:root 
{
    --black-dark: rgba(20,21,41,1);
    --black-dark-lighter: rgba(40,41,61,1);
    --black-mid:  rgba(85,88,112,1);
    --black-light: rgba(144,144,167,1);
    --white-dark: rgba(235,234,239,1);
    --white-mid: rgba(242,242,244,1);
    --white-light: rgba(250,250,252,1);
    --blue-dark: rgba(53,104,212,1);
    --blue-mid: rgba(61,123,250,1);
    --blue-light: rgba(103,152,255,1);
    --red-dark: rgba(255,59,59,1);
    --red-mid: rgba(255,92,92,1);
    --red-light: rgba(255,128,128,1);
    --green-dark: rgba(5,194,112,1);
    --green-mid: rgba(57,218,138,1);
    --green-light: rgba(87,235,163,1);
    --orange-dark: rgba(254,136,1,1);
    --orange-mid: rgba(253,172,65,1);
    --orange-light: rgba(252,204,118,1);
    --yellow-dark: rgba(255,204,0,1);
    --yellow-mid: rgba(254,221,73,1);
    --yellow-light: rgba(254,237,115,1);
    --cyan-dark: rgba(0,207,221,1);
    --cyan-mid: rgba(116,224,230,1);
    --cyan-light: rgba(169,239,243,1);
    --purple-dark: rgba(101,0,205,1);
    --purple-mid: rgba(172,92,217,1);
    --purple-light: rgba(222,165,232,1);

    --baier-red: #c01818;
    --baier-blue: #22305c;
    --baier-yellow: #fab907;
    --baier-gray: rgb(177, 177, 177);
    --baier-anthracite: rgb(27, 27, 27);

    --contact-form-darkgray: #434655;
    --contact-form-gray: #888;
    --contact-form-lightgray: #ddd;
    --contact-form-placeholder: #ccc;

    --text-gray: #555;
    --text-darkgray: #434655;
}

html, body {
    width: 100dvw;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    }

h1 {
    font-size: 1.6em;
    scroll-margin-top: 160px;
}

h2 {
    font-size: 1.4em;
    scroll-margin-top: 160px;
}

h3 {
    font-size: 1.2em;
    scroll-margin-top: 160px;
}

h4 {
    font-size: 1.1em;
    scroll-margin-top: 160px;
}

.breaking-text {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.center
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-icons
{
    font-size: inherit !important;
    color: inherit !important;
}

.underlined-link {
    cursor: pointer;
    color: var(--baier-blue) !important;
    font-weight: 500;
}

.underlined-link:hover {
    text-decoration: underline;
}

p
{
    padding: 0;
    margin: 0;
}

.hidden
{
    display: none;
}

.spacer {
    position: relative;
    width: 100%;
    height: 10px;
}

.noselect
{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
}

.selectable
{
    -webkit-touch-callout: text; /* iOS Safari */
    -webkit-user-select: text; /* Safari */
    -khtml-user-select: text; /* Konqueror HTML */
    -moz-user-select: text; /* Old versions of Firefox */
    -ms-user-select: text; /* Internet Explorer/Edge */
    user-select: text; /* Non-prefixed version, currently supported by Chrome, Firefox, and Opera */
}

.text-black-dark
{
    color: var(--black-dark)
}
.text-black-mid
{
    color: var(--black-mid)
}
.text-black-light
{
    color: var(--black-light)
}
.text-white-dark
{
    color: var(--white-dark)
}
.text-white-mid
{
    color: var(--white-mid)
}
.text-white-light
{
    color: var(--white-light)
}
.text
{
    font-family: 'Inter';
    font-weight: 500;
}
.text-bold
{
    font-family: 'Inter';
    font-weight: 700;
}

.text-s
{
    font-size: .9em;
}

.text-m
{
    font-size: 1em;
}

.text-ml
{
    font-size:1.1em;
}

.text-l
{
    font-size: 1.25em;
}

.text-xl
{
    font-size: 1.5em;
}

.text-xxl
{
    font-size: 2em;
}

.w10
{
    width: 10% !important;
}

.w20
{
    width: 20% !important;
}

.w25
{
    width: 25% !important;
}

.w30
{
    width: 30% !important;
}

.w33-3
{
    width: 33.3% !important;
}

.w40
{
    width: 40% !important;
}

.w50
{
    width: 50% !important;
}

.w60
{
    width: 60% !important;
}

.w66-6
{
    width: 66.6% !important;
}

.w70
{
    width: 70% !important;
}

.w80
{
    width: 80% !important;
}

.w90
{
    width: 90% !important;
}

.h5px
{
    height: 5px !important;
}

.h10px
{
    height: 10px !important;
}

.h15px
{
    height: 15px !important;
}

.h20px
{
    height: 20px !important;
}

.h25px
{
    height: 25px !important;
}

.h30px
{
    height: 30px !important;
}

.h40px
{
    height: 40px !important;
}

.h50px
{
    height: 50px !important;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

button {
    all: unset;
    cursor: pointer;
}

a, button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    margin: 0;
    padding: 0;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    background-color: white;
    box-sizing: content-box;
    border-bottom: solid 1px rgba(0,0,0,0.05);
    z-index: 1000;
    overflow: hidden;
}

.nav-shadow {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-bottom: 0 !important;
}

.nav-logo {
    position: relative;
    width: calc(100% - 120px);
    height: 100%;
    margin-left: 60px;
}

.nav-logo-img {
    max-width: 180px;
    height: auto;
}

.nav-burger {
    width: 60px;
    height: 100%;
    font-size: 1.75em;
    justify-content: flex-start;
    color: var(--baier-anthracite);
}

@media (max-width: 340px) {
    .nav-burger {
        justify-content: center;
    }
}

.nav-overlay-carrier {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    box-sizing: border-box;
    display: none;
    z-index: 80;
    overflow: hidden;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255,255,255,.95);
    backdrop-filter: blur(4px);
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: auto;
}

.nav-overlay-content {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}

.nav-mobile-item
{
    position: relative;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    border-bottom: solid 1px rgba(0,0,0,0.05);
    display: flex;
}

.nav-mobile-item-icon
{
    position: relative;
    width: 60px;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 1.75em;
}

.nav-mobile-item-name
{
    position: relative;
    width: calc(100% - 60px);
    height: 100%;
    font-weight: 600;
    justify-content: flex-start;
    color: var(--baier-anthracite);
}

.nav-mobile-contact-field
{
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-top: 25px;
    box-sizing: border-box;
    padding: 0 !important;
}

.nav-mobile-contact-field-label
{
    position: relative;
    width: calc(100% - 20px);
    height: auto;
    margin-left: 20px;
    font-weight: 700;
    color: var(--baier-gray);
    font-size: .8em;
}

.nav-mobile-contact-field-content
{
    position: relative;
    width: calc(100% - 20px);
    height: auto;
    margin-left: 20px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 1em;
    color: var(--baier-anthracite);
}

.nav-mobile-menu-overlay-terminator
{
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: 25px;
    box-sizing: border-box;
    border-top: solid 1px rgba(0,0,0,0.12);
    color: var(--baier-gray);
    font-size: .9em;
}

.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    nav {
        height: 110px;
        display: flex;
    }

    .nav-burger {
        display: none !important;
    }

    .nav-logo {
        width: 300px;
        margin: 0;
    }

    .nav-logo-img {
        max-width: 260px;
    }

    .nav-desktop {
        position: relative;
        height: 100%;
        width: auto;
        display: flex;
        flex-grow: 1;
        flex-direction: row-reverse;
    }
}

.nav-desktop-contact
{
    position: relative;
    width: 300px;
    height: 100%;
    box-sizing: border-box;
    border-left: solid 1px rgba(0,0,0,0.05);
}

.nav-desktop-contact-row, .nav-desktop-menu-item-row
{
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    transition: all .4s ease-in-out;
}

.nav-desktop-contact-row:first-child, .nav-desktop-menu-item-row:first-child {
    margin-top: 15px;
}

.nav-desktop-contact-icon, .nav-desktop-menu-item-icon
{
    position: relative;
    width: 50px;
    height: 100%;
    font-size: 1.6em;
}

.nav-desktop-contact-text, .nav-desktop-menu-item-text
{
    position: relative;
    width: calc(100% - 50px);
    height: 100%;
    font-size: 1.15em;
    justify-content: flex-start;
    transition: all .4s ease-in-out;
}

.nav-desktop-menu-item-icon, .nav-desktop-menu-item-text
{
    width: 100%;
    justify-content: center;
}

.nav-desktop-contact-row:hover .nav-desktop-contact-text {
    text-decoration: underline;
}

.nav-desktop-menu {
    position: relative;
    width: calc(100% - 300px);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
}

.content
{
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100dvh - 110px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 80px;
}

@media (min-width: 1024px) {
    .content {
        margin-top: 110px;
    }
}

.nav-desktop-item
{
    position: relative;
    width: 140px;
    height: 100%;
    transition: all .4s ease-in-out;
}

.nav-desktop-item:hover {
    background-color: rgba(0,0,0,0.05);
}

.nav-desktop-item:hover .nav-desktop-menu-item-text {
    text-decoration: underline;
}

.nav-desktop-menu-item-icon
{
    font-size: 1.75em;
}

.nav-desktop-menu-item-text
{
    font-size: 1.15em;
    font-weight: 500;
    color: var(--baier-anthracite);
}

@media (min-width: 1024px) and (max-width: 1600px) {
    .nav-logo {
        width: 220px;
    }

    .nav-logo-img {
        max-width: 200px;
    }

    .nav-desktop-contact {
        width: 250px;
    }

    .nav-desktop-contact-text {
        font-size: 1em;
    }

    .nav-desktop {
        width: calc(100% - 230px);
    }

    .nav-desktop-item {
        width: 92px;
    }

    .nav-desktop-menu {
        width: calc(100% - 230px);
    }

    .nav-desktop-menu-item-icon {
        font-size: 1.5em;
    }

    .nav-desktop-menu-item-text {
        font-size: 1.05em;
    }
}

@media (min-width: 1300px) and (max-width: 1600px) {
    .nav-desktop-item {
        width: 130px;
    }

    .nav-desktop-menu-item-icon {
        font-size: 1.75em;
    }

    .nav-desktop-menu-item-text {
        font-size: 1.15em;
    }
}

@media (min-width: 1921px) {
    .nav-desktop-item {
        width: 160px;
    }

    .nav-desktop-menu-item-icon {
        font-size: 2em;
    }

    .nav-desktop-menu-item-text {
        font-size: 1.15em;
    }
}

footer {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--baier-red);
    color: var(--white-mid);
}

.footer-menu {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu-sub {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    border-top: solid 1px rgba(255, 255, 255, .1);
}

.footer-menu-sub:first-child {
    border-top: 0;
    margin-top: 0;
}

.footer-menu-sub-headline {
    position: relative;
    width: 80%;
    margin: 20px;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    align-items: center;
    justify-items: flex-start;
    font-size: 1.1em;
    font-weight: 700;
}

.footer-menu-sub-item {
    position: relative;
    width: 80%;
    height: auto;
    margin: 10px;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    justify-items: flex-start;
    margin-bottom: 5px;
    font-weight: 500;
    cursor: pointer;
}

.footer-menu-sub-item:hover {
    text-decoration: underline;
}

.footer-menu-sub-item:nth-child(2) {
    margin-top: 0;
}

.footer-legal {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-top: solid 1px rgba(255, 255, 255, .1);
}

.footer-legal-inner {
    position: relative;
    width: 80%;
    margin: 10%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-legal-inner > a {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 5px;
    box-sizing: border-box;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 500;
    justify-content: flex-start;
}

.footer-legal-inner > a:hover {
    text-decoration: underline;
}

.footer-legal-inner > a:nth-child(1) {
    margin-top: 0;
}

.footer-copyright {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    box-sizing: border-box;
    border-top: solid 1px rgba(255, 255, 255, .1);
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: .85em;
}

.footer-copyright-inner {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-right: 10%;
}

@media (min-width: 1200px) {
    .footer-menu, .footer-legal {
        width: 1200px;
        margin-left: calc(50% - 600px);
        margin-right: calc(50% - 600px);
    }

    .footer-menu {
        box-sizing: border-box;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-menu-sub {
        width: 400px;
        margin: 0;
        border: 0;
        font-size: 1.25em;
    }

    .footer-legal {
        border: 0;
        justify-content: flex-start;
    }

    .footer-legal-inner {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        
    }

    .footer-legal-inner > a {
        width: auto;
        display: flex;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 0;
        font-size: 1.2em;
    }

    .footer-copyright-inner {
        display: flex;
        justify-content: center;
        font-size: 1.2em;
    }

    .footer-copyright {
        border: 0;
    }
}

.bottom-contact {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: 'Montserrat';
    background-color: var(--baier-blue);
    color: white;
}

.bottom-contact-text {
    position: relative;
    width: 100%;
    font-weight: 600;
    font-size: 1.25em;
    box-sizing: border-box;
    padding: 5px;
    padding-top: 0;
    text-align: center;
}

.bottom-contact-button {
    position: relative;
    width: 220px;
    height: 40px;
    margin-top: 20px;
    box-sizing: border-box;
    border: solid 2px white; 
    font-weight: 700;
    font-size: 1em;
    transition: all .4s ease-in-out;
}

.bottom-contact-button:hover {
    background-color: white;
    color: var(--baier-blue);
}

@media (min-width: 600px) {

    .bottom-contact-text {
        position: relative;
        width: 100%;
        font-weight: 600;
        font-size: 2em;
    }

    .bottom-contact-button {
        font-size: 1.15em;
    }

}

@media (min-width: 1200px) {

    .bottom-contact-text {
        position: relative;
        width: 100%;
        font-weight: 600;
        font-size: 2.25em;
    }

    .bottom-contact-button {
        font-size: 1.1em;
    }

}

.simple-content-carrier, .centered-content-carrier {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.simple-content, .centered-content {
    position: relative;
    width: 1200px;
    height: auto;
    display: block;
    color: var(--baier-anthracite);
    overflow: auto;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.centered-content-no-padding {
    padding-bottom: 0;
}

.centered-content > p h1 h2 h3 h4 {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat';
}

.centered-content > p {
    font-size: 1.5em;
    color: #555;
    font-family: 'Montserrat';
}

.centered-content > h1 {
    margin-top: 72px;
    margin-bottom: 36px;
    font-family: 'Montserrat';
    color: #555;
    font-size: 2.25em;
}

.centered-content > h2 {
    margin-top: 36px;
    margin-bottom: 18px;
    font-family: 'Montserrat';
    color: #555;
    font-size: 1.8em;
}

.h1-less-margin {
    margin-top: 36px !important;
    margin-bottom: 24px !important;
}

.h2-less-margin {
    margin-top: 24px !important;
    margin-bottom: 18px !important;
}

.centered-content-overflowing-carrier
{
    position: relative;
    width: 1250px;
    margin-left: calc(50% - (1250px / 2));
    margin-right: calc(50% - (1250px / 2));
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
    height: auto;
}

.centered-content-overflowing-carrier-top-margin {
    margin-top: 40px !important;
}

.centered-content-overflowing-carrier-top-margin-large {
    margin-top: 100px !important;
}

.centered-content-image {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 450px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

@media (max-width: 768px) {
    .centered-content > p {
        font-size: 1.15em;
    }

    .centered-content > h1 {
        font-size: 1.5em;
    }

    .centered-content > h2 {
        font-size: 1.3em;
    }
}

@media (max-width: 1200px) {

    .centered-content-overflowing-carrier-top-margin-large {
        margin-top: 70px !important;
    }

    .centered-content > h1 {
        font-size: 1.6em;
        margin-top: 36px;
        margin-bottom: 18px;
    }

    .centered-content > h2 {
        font-size: 1.4em;
        margin-top: 18px;
        margin-bottom: 14px;
    }

    .centered-content > h3 {
        font-size: 1.2em;
    }

    .centered-content > h4 {
        font-size: 1.1em;
    }

    .h1-less-margin {
        margin-top: 18px !important;
    }
}

@media (max-width: 1920px) {
    .centered-content > p {
        font-size: 1.25em;
    }

    .centered-content > h1 {
        font-size: 1.75em;
    }

    .centered-content > h2 {
        font-size: 1.4em;
    }
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, 380px);
  gap: 30px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.tile {
    position: relative;
    width: var(--tile-width);
    height: 380px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Montserrat';
    box-shadow: 0 1px 3px rgba(0,0,0,0.12),
                0 1px 2px rgba(0,0,0,0.24);
}

.tile-less-height {
    height: 150px;
}

.tile-image {
  position: absolute;
  inset: 0;
  transition: all 0.4s ease;
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.4s ease;
}

.tile:hover .tile-image {
    transform: scale(1.1);
}

.tile:hover .tile-content {
    backdrop-filter: unset;
}

.tile-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, .65);
    color: white;
    transition: all .4s ease-in-out;
}

.tile-title {
    position: relative;
    width: 100%;
    height: 100px;
    font-size: 1.9em;
    font-weight: 700;
    text-align: center;
}

.tile-title-fullheight {
    margin-top: 50px;
    height: calc(100% - 100px);
    box-sizing: border-box;
    padding: 20px;
}

.tile-text {
    position: relative;
    width: 100%;
    height: 220px;
    box-sizing: border-box;
    padding: 20px;
    padding-top: 0;
    align-items: flex-start;
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1.4;
}

.tile-cta {
    position: relative;
    width: 100%;
    height: 50px;
    font-size: 1.1em;
    font-weight: 600;
}

.tile:hover .tile-cta {
    text-decoration: underline;
}

.tile:hover .tile-content {
    background-color: rgba(0, 0, 0, .5);
}

@media (max-width: 1920px) {
    .tile-text {
        font-size: 1.15em;
    }
}

@media (max-width: 400px) {
    .tiles {
        grid-template-columns: repeat(auto-fit, 340px);
    }
    .tile {
        height: 340px;
    }
    .tile-less-height {
        height: 150px;
    }
    .tile-title {
        font-size: 1.35em;
        height: 80px;
    }
    .tile-title-fullheight {
        font-size: 1.55em;
        height: calc(100% - 100px);
    }
    .tile-text {
        font-size: 1.05em;
        height: 210px;
    }
    .tile-cta {
        font-size: 1em;
    }
}

@media (max-width: 360px) {
    .tiles {
        grid-template-columns: repeat(auto-fit, 300px);
    }
    .tile {
        height: 300px;
    }
    .tile-title {
        font-size: 1.2em;
        height: 80px;
    }
    .tile-title-fullheight {
        font-size: 1.45em;
        height: calc(100% - 100px);
    }
    .tile-text {
        font-size: 1em;
        height: 170px;
    }
    .tile-cta {
        font-size: 1em;
    }
}

@media (max-width: 320px) {
    .tiles {
        grid-template-columns: repeat(auto-fit, 300px);
    }
    .tile {
        height: 300px;
    }
    .tile-title-fullheight {
        height: calc(100% - 100px);
    }
}

@media (max-width: 1200px) {

    .simple-content, .centered-content {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .centered-content-overflowing-carrier {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 10px;
        padding: 0;
    }
}

.widetiles {
    position: relative;
    width: 100%;
    height: auto;
    font-family: 'Montserrat';
    margin-bottom: 80px;
}

.widetile {
    width: 100%;
    height: 300px;
    margin-top: 50px;
    display: flex;
    box-sizing: border-box;
    border: solid 1px rgba(0, 0, 0, .1)
}

.widetile:first-child {
    margin-top: 0;
}

.widetile-image {
    position: relative;
    width: 240px;
    height: 100%;
    display: flex;
}

.widetile-image > picture > img, .widetile-image > img {
    width: 175px;
    height: 175px;
}

.widetile-content {
    position: relative;
    width: calc(100% - 240px);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.widetile-title {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: flex-start;
    font-size: 1.75em;
    font-weight: 700;
    box-sizing: border-box;
    padding-right: 10px;
    color: #555;
}

.widetile-text {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding-right: 10px;
    font-size: 1.5em;
    line-height: 1.4;
    color: #555;
}

@media (max-width: 1920px) {
    .widetile-text {
        font-size: 1.25em;
    }
}

@media (max-width: 1200px) {
    .widetile-text {
        font-size: 1.25em;
    }
}

@media (max-width: 800px) {
    .widetile {
        height: auto;
        flex-wrap: wrap;
        border: 0;
    }

    .widetile-image {
        width: 100%;
        height: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .widetile-image > img {
        width: 200px;
        height: 200px;
    }

    .widetile-content {
        width: calc(100% - 20px);
        height: auto;
    }

    .widetile-title {
        width: 100%;
        height: auto;
        font-size: 1.45em;
    }

    .widetile-text {
        margin-top: 20px;
    }
}

input::placeholder,
textarea::placeholder {
  color: var(--contact-form-placeholder);
  opacity: 1;
  font-weight: 400;
}

.contact-form-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, .5);
    font-family: 'Montserrat';
}

.contact-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}


@media (max-height: 650px) {
    .contact-form {
        align-items: flex-start !important;
    }
}

.contact-form-window {
    position: relative;
    width: 1000px;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-family: 'Montserrat';
    background-color: white;
    overflow: hidden;
}

.contact-form-window-headline {
    position: relative;
    width: calc(100% - 160px);
    height: 80px;
    margin-left: 80px;
    font-size: 1.5em;
    font-weight: 600;
    color: #555;
}

.contact-form-window-close-btn-carrier {
    position: relative;
    width: 80px;
    height: 80px;
}

.contact-form-close-btn {
    position: relative;
    width: 40px;
    height: 40px;
    font-size: 1.65em;
    color: var(--baier-red);
    transition: all .4s ease-in-out;
    border-radius: 20px;
}

.contact-form-close-btn:hover {
    background-color: rgba(0, 0, 0, .05);
}

.contact-form-top-row {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
}

.contact-form-table
{
    position: relative;
    width:100%;
    height:auto;
    float:left;
    box-sizing: border-box;
}

.contact-form-row
{
    position: relative;
    width:100%;
    height:auto;
    float:left;
}

.contact-form-col-50, .contact-form-col-100
{
    position: relative;
    width: calc(50% - 40px);
    height:auto;
    float:left; 
    box-sizing:border-box;
    margin: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.contact-form-col-100
{
    width: calc(100% - 40px);
}

.contact-form-input-name
{
    position: relative;
    width: 100%;
    height: auto;
    float:left;
    font-weight: 600;
    font-size: 1em;
    color: var(--contact-form-gray);
    margin-bottom: 10px;
}

.contact-form-input, .contact-form-input-textarea
{
    position: relative;
    width: calc(100% - 30px);
    height: 30px;
    float: left;
    box-sizing:border-box;
    border: 0;
    border-bottom: solid 1px #ddd;
    outline: 0;
    background-color: transparent;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size:1.2em;
    color: var(--contact-form-darkgray);
    transition: all .4s ease-in-out;
}

.contact-form-input-textarea
{
    width: 100%;
    overflow-y: auto;
}

.contact-form-input-status-icon
{
    width: 30px;
    height: 30px;
    float: left;
    box-sizing:border-box;
    border-bottom: solid 1px var(--lightgray);
    font-size: 1.5em;
}

.contact-form-input-status-icon-empty
{
    color: var(--contact-form-gray);
}

.contact-form-input-status-icon-issue
{
    color: var(--baier-red);
}

.contact-form-input-status-icon-good
{
    color: var(--baier-blue);
}

.contact-form-input-status-icon-active
{
    border-color: var(--contact-form-darkgray) !important
}

.contact-form-input-textarea
{
    min-height: 50px;
    max-height: 300px;
    padding: 15px;
    padding-left: 0px;
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
    transition: border .4s ease-in-out;
    line-height: 150%;
}

.contact-form-input:active, .contact-form-input:focus, .contact-form-input-textarea:active, .contact-form-input-textarea:focus
{
    border: 0;
    border-bottom: solid 1px var(--contact-form-darkgray);
    outline: 0;
}

.contact-form-input-hint
{
    position: relative;
    width: 100%;
    height: auto;
    float:left;
    display: none;
    box-sizing:border-box;
    padding: 15px;
    padding-left: 0;
    color: var(--baier-red);
    font-weight: 500;
}

.contact-form-required
{
    position: relative;
    font-size:1.1em;
    padding-left: 3px;
    color: var(--baier-red)
}

.contact-form-missing-contact-hint {
    color: var(--baier-red);
    font-weight: 600;
}

.contact-form-privacy-disclaimer {
    position: relative;
    font-size: .9em;
    color: var(--contact-form-gray);
}

.contact-form-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, .5);
}

@media (max-width: 1024px) {
    .contact-form-full-overlay {
        position: fixed;
    }
}

.contact-form-full-overlay-inner
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
}

.contact-form-full-overlay-dialogue
{
    position: relative;
    width: 100%;
    height: auto;
}

.contact-form-full-overlay-dialogue-title {
    font-size: 2em;
    color: var(--baier-anthracite);
    font-weight: 600;
    box-sizing: border-box;
    padding-bottom: 50px;
}

.contact-form-full-overlay-dialogue-buttons
{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}

.contact-form-full-overlay-dialogue-button
{
    width: 220px;
    height: 40px;
    box-sizing: border-box;
    border: solid 2px var(--baier-red);
    color: var(--baier-red);
    margin-left: 40px;
    font-weight: 600;
    font-size: 1.2em;
    transition: all .4s ease-in-out;
}

.contact-form-full-overlay-dialogue-button:hover {
    background-color: var(--baier-red);
    color: white;
}

.contact-form-full-overlay-dialogue-button-blue {
    color: var(--baier-blue);
    border-color: var(--baier-blue)
}

.contact-form-full-overlay-dialogue-button-blue:hover {
    background-color: var(--baier-blue);
    color: white;
}

.contact-form-full-overlay-dialogue-button:first-child 
{
    margin-left: 0;
}

.contact-form-submit-button-carrier
{
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
}

.contact-form-submit-button {
    width: 250px;
    height: 40px;
    box-sizing: border-box;
    border: solid 2px var(--baier-blue);
    background-color: transparent;
    color: var(--baier-blue);
    cursor: pointer;
    transition: all .4s ease-in-out;
    font-weight: 600;
    font-size: 1.2em;
}

.contact-form-submit-button:hover {
    background-color: var(--baier-blue);
    color: white;
}

.contact-form-sending-overlay-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-form-sending-overlay-badge {
    position: relative;
    width: 800px;
    height: auto;
    display: none;
    flex-wrap: wrap;
}

.contact-form-sending-overlay-badge-visible {
    display: flex;
}

.contact-form-sending-overlay-icon {
    position: relative;
    width: 100%;
    height: 110px;
    font-size: 5em;
}

.contact-form-sending-overlay-loader {
    position: relative;
    width: 110px;
    height: 110px;
}

.baier-blue {
    color: var(--baier-blue);
}

.baier-red {
    color: var(--baier-red);
}

.contact-form-sending-overlay-text {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    box-sizing: border-box;
    padding: 20px;
    color: var(--baier-anthracite);
    text-align: center;
    font-size: 1.5em;
}

@media (max-width: 1024px) {

    .contact-form-sending-overlay-badge {
        width: 100%;
    }

    .contact-form {
        align-items: flex-start !important;
    }

    .contact-form-window {
        width: 100%;
        height: auto;
        min-height: 100svh;
        margin-top: 0;
        margin-bottom: 0;
    }

    .contact-form-window-headline {
        width: calc(100% - 80px);
        box-sizing: border-box;
        border-bottom: solid 1px var(--contact-form-lightgray);
        margin: 0;
        padding: 10px;
        padding-left: 20px;
        padding-right: 0;
        font-size: 1em;
        font-weight: 700;
    }

    .contact-form-window-close-btn-carrier {
        box-sizing: border-box;
        border-bottom: solid 1px var(--contact-form-lightgray);
    }

    .contact-form-col-50
    {
        width: calc(100% - 40px);
    }

    .contact-form-input-name {
        font-size: .8em;
    }

    .contact-form-input {
        font-size: 1em;
    }

    .contact-form-input-textarea {
        font-size: 1em;
    }

    .contact-form-full-overlay-dialogue-title {
        font-size: 1.1em;
    }

    .contact-form-full-overlay-dialogue-button {
        width: 140px;
        height: 35px;
        font-size: 1em;
        margin-left: 20px;
    }

    .contact-form-table {
        margin-bottom: 50px;
    }

    .contact-form-missing-contact-hint {
        font-size: .9em;
    }

    .contact-form-input-hint {
        font-size: .9em;
    }

    .contact-form-sending-overlay-badge {
        width: 100%;
    }
}

.tile-contact-top {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    box-sizing: border-box;
    border-bottom: solid 1px rgba(0, 0, 0, .05);
}

.tile-contact-bottom {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    font-size: 1.15em;
    font-weight: 700;
    color: #555;
    box-sizing: border-box;
    padding: 10px;
}

.tile-contact-icon {
    position: relative;
    width: 50px;
}

.tile-contact-icon-circle {
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 1.5em;
    color: white
}

.tile-contact-icon-red {
    background-color: var(--baier-red);
}

.tile-contact-icon-blue {
    background-color: var(--baier-blue);
}

.tile-contact-icon-yellow {
    background-color: var(--baier-yellow);
}

.tile-contact-title {
    position: relative;
    width: calc(100% - 100px);
    min-height: 50px;
    margin-right: 50px;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    color: #555;
    font-size: 1.25em;
}

.tile-contact-select-all {
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
    user-drag: all;
    -webkit-user-drag: all;
}

@media (min-width: 1921px) {
    .tile-contact-title {
        font-size: 1.5em;
    }

    .tile-contact-bottom {
        font-size: 1.5em;
    }

    .tile-less-height {
        height: 250px;
    }
}

.centered-content-button-carrier {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .centered-content-button-carrier {
        justify-content: center;
        margin-top: 36px;
        margin-bottom: 36px;
    }
}
.centered-content-button-carrier

.centered-content-button {
    position: relative;
    width: 250px;
    height: 40px;
    border: solid 2px var(--baier-blue);
    font-size: 1.15em;
    font-weight: 600;
    transition: all .4s ease-in-out;
    color: var(--baier-blue);
}

.centered-content-button:hover {
    background-color: var(--baier-blue);
    color: white;
}

.carousel {
    position: relative;
    width: 100%;
    height: 50vh;
    height: 50svh;
    overflow: hidden;
    min-height: 650px;
    background-color: var(--baier-anthracite);
}

@media (max-width: 768px) {
    .carousel {
        height: calc(100vh - 80px);
        height: calc(100svh - 80px);
        min-height: 550px;
        max-height: 750px;
    }
}

.carousel-inline {
    background-color: white;
}

.carousel-slides
{
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.carousel-btn-left, .carousel-btn-right
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    z-index: 30;
}

.carousel-btn-right {
    left: calc(100% - 100px);
    width: 100px;
}

.carousel-btn-inner {
    width: 50px;
    height: 50px;
    font-size: 4em;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.carousel-btn-inner:hover {
    color: white;
}


.carousel-progress {
    position: absolute;
    top: calc(100% - 50px);
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 50;
}

.carousel-progress-circle {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 5px;
  margin-top: 17.5px;
  margin-bottom: 17.5px;
  border-radius: 8px;
  box-sizing: border-box;
  backdrop-filter: blur(6px);
  border: solid 2px white;
  transition: all .4s ease-in-out;
}

.carousel-progress-circle-active {
  background-color: white;
}

.carousel-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .carousel-btn-left,
  .carousel-btn-right {
    display: none;
  }
}

.carousel-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: transparent;
}

.carousel-slide-content-inner {
  position: relative;
  width: 1200px;
  height: 100%;
}

@media (max-width: 1500px) {
    .carousel-slide-content-inner {
        width: calc(100% - 200px);
        margin-left: 100px;
        margin-right: 100px;
    }
}

.carousel-slide-headline {
  font-size: 3.5em;
  font-weight: 600;
  color: white;
  font-family: 'Montserrat';
  margin-top: 80px;
  margin-bottom: 80px;
}

.carousel-slide-subline {
  max-height: 200px;
  box-sizing: border-box;
  font-size: 1.75em;
  color: white;
  display: block;
  font-family: 'Montserrat';
  text-align: center;
  overflow: hidden;
}

.carousel-slide-cta {
  width: 100%;
  height: 50px;
  margin-top: 80px;
}

.carousel-slide-cta-btn {
  position: relative;
  width: 300px;
  height: 50px;
  border: solid 1px white;
  backdrop-filter: blur(6px);
  color: white;
  font-family: 'Montserrat';
  font-size: 1.5em;
  transition: all .3s ease-in-out;
  cursor: pointer;
  font-weight: 600;
}

.carousel-slide-cta-btn:hover {
  background-color: rgba(255, 255, 255, .8);
  color: var(--baier-anthracite)
}


@media (max-width: 768px) {

  .carousel-slide-headline {
    max-height: 60px;
    font-size: 2.1em;
    margin-top: 40px;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .carousel-slide-content-inner {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .carousel-slide-subline {
    max-height: 300px;
    font-size: 1.35em;
  }

  .carousel-slide-cta {
    margin-top: 30px;
  }

  .carousel-slide-cta-btn {
    width: 220px;
    font-size: 1.25em;
  }
}

@media (max-width: 400px) {
  .carousel-slide-headline {
    font-size: 1.85em;
  }
}

@media (max-width: 360px) {
  .carousel-slide-headline {
    font-size: 1.6em;
  }

  .carousel-slide-subline {
    font-size: 1.2em;
  }

}

@media (max-width: 350px) {
  .carousel-slide-headline {
    font-size: 1.5em;
  }
}

.carousel-inline-margin-bottom {
    margin-bottom: 50px;
}

.carousel-shadow {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.carousel-inline-slide-bg {
    height: calc(100% - 150px);
}

.carousel-inline-btn {
    top: calc(100% - 150px);
    height: 150px;
}

.carousel-inline-btn > .carousel-btn-inner {
    color: var(--baier-blue);
    font-size: 3em;
    opacity: .6;
}

.carousel-inline-btn > .carousel-btn-inner:hover {
    opacity: 1;
}

.carousel-inline-slide-content {
    position: absolute;
    top: calc(100% - 150px);
    height: 150px;
    background-color: white;
}

.carousel-inline-slide::before {
  background: transparent !important;
}

.carousel-inline-progress {
    height: 40px;
    top: calc(100% - 40px);
}

.carousel-inline-progress > .carousel-progress-circle {
    border-color: var(--baier-blue) !important;
}

.carousel-inline-progress > .carousel-progress-circle-active {
    background-color: var(--baier-blue) !important;
}

.carousel-inline-slide-content-inner {
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 40px;
    height: calc(100% - 40px);
    width: calc(100% - 200px);
}

.carousel-inline-slide-headline {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: hidden;
    font-size: 1.3em;
    font-weight: 600;
    align-items: flex-end;
    color: var(--baier-blue);
}

.carousel-inline-slide-subline {
    position: relative;
    width: 100%;
    height: 60px;
    padding: 5px;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 1.1em;
    text-align: center;
    color: #555;
}

@media (max-width: 1200px) {
    .carousel-inline-slide-subline {
        font-size: 1em;
    }
}
@media (max-width: 768px) {
    .carousel-inline-slide-content-inner {
        left: 0;
        width: 100%;
        margin: 0;
    }

    .carousel-inline-slide-bg {
        height: calc(100% - 200px);
    }

    .carousel-inline-btn {
        top: calc(100% - 200px);
        height: 200px;
    }

    .carousel-inline-slide-content {
        top: calc(100% - 200px);
        height: 200px;
    }

    .carousel-inline-slide-subline {
        height: 110px;
        font-size: .9em;
    }
}