/* 1_Color
    1_1_Vars
    1_2_Scollbar
    1_3_Custom_Color_Classes
    1_4_Body_Global_Colors
  2_Typografie
    2_1_standard_Typo
    2_2_custom_Typo_classes
  3_Layout
    3_1_standard_Layout
    3_2_custom_Layout_classes
    3_3_CSS_Grid
  4_Components
    4_1_1_main_Nav
      4_1_2_page_Labels
    4_2_call_to_action
    4_3_atf_gallery_herobg
    4_4_Footer
    4_5_Kategorie_Slide_Divider
  5_Seitenspezifisch
    5_1_Startseite
      5_1_1_start_Teaser
      5_1_2_Team
      5_1_3_Kunden
    5_2_VR_und_Foto
      5_2_1_Fotogallerygrid
      5_2_2_sogehts
    5_3_Branding */
/* 1_Color */
/* 1_1_Vars */
:root {
    --black: #000000;
    --dark: #151912;
    --gold: #F2E5BB;
    --gold-dark: #A2956B;
    --p-color: #333333;
}

/* 1_2_Scollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* raleway-regular - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    src: local(''),
       url('../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-regular.woff') format('woff');

    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* raleway-600 - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    src: local(''),
       url('../fonts/raleway-v28-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-600.woff') format('woff');

    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* raleway-800 - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    src: local(''),
       url('../fonts/raleway-v28-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-800.woff') format('woff');

    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* kalam-regular - latin */
@font-face {
    font-family: 'Kalam';
    font-style: normal;
    font-weight: 400;
    src: local(''),
       url('../fonts/kalam-v16-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/kalam-v16-latin-regular.woff') format('woff');

    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* kalam-700 - latin */
@font-face {
    font-family: 'Kalam';
    font-style: normal;
    font-weight: 700;
    src: local(''),
       url('../fonts/kalam-v16-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/kalam-v16-latin-700.woff') format('woff');

    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* 1_4_Body_Global_Colors */
.color--dark {
    color: var(--dark) !important;
}

.color--gold {
    color: var(--gold) !important;
}

body {
    color: var(--p-color);
    background: var(--dark);
}

@media (prefers-color-scheme: dark) {
    body {
        background: var(--dark);
    }
}

/* 2_Typografie */
/* 2_1_standard_Typo */
body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

body a,
body p,
body h1,
body h2,
body h3 {
    letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

* strong,
* b {
    font-weight: 800;
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 70ch;
    font-weight: 500;
}

@media (max-width:1279px) {
    p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width:479px) {
    p {
        margin-bottom: 6px;
    }
}

a,
a:link {
    text-decoration: none;
    color: #333333;
}

.footer__legal a,
.footer__legal a:link {
    color: var(--gold);
}

/* 2_2_custom_Typo_classes */
.heading_3 {
    font-weight: 800;
}

.heading_1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    font-family: 'Kalam', cursive;
}

@media (max-width:1029px) {
    .heading_1 {
        font-size: 36px;
        line-height: 40px;
    }
}

@media (max-width:767px) {
    .heading_1 {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (max-width:479px) {
    .heading_1 {
        font-size: 24px;
        line-height: 28px;
    }
}

.heading_2 {
    font-size: 36px;
    line-height: 48px;
}

.lead {
    font-size: 24px;
    line-height: 36px;
}

.heading_2 {
    font-weight: 400;
    font-family: 'Kalam', cursive;
}

@media (max-width:767px) {
    .heading_2,
    .lead {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width:479px) {
    .heading_2,
    .lead {
        font-size: 18px;
        line-height: 24px;
    }
}

.heading_2--black {
    font-weight: 900;
}

.heading_3 {
    font-size: 20px;
    line-height: 30px;
}

@media (max-width:767px) {
    .heading_3 {
        font-size: 20px;
        line-height: 24px;
    }
}

.heading_4 {
    font-size: 24px;
    line-height: 24px;
}

.subheading {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    font-weight: 800;
}

.caps {
    text-transform: uppercase;
}

/* 3_Layout */
/* 3_1_standard_Layout */
*,
:after,
:before {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    float: left;
    overflow-x: hidden;
}

/* 3_2_custom_Layout_classes */
.fullscreen {
    width: 100%;
    height: 100vh;
    position: relative;

    /* overflow: hidden */
}

.fullscreen--pulledup {
    height: calc(100vh + 48px);
    padding-top: 48px;
    margin-top: -48px;
    position: relative;
    overflow: hidden;
}

.halfscreen {
    width: 100%;
    height: 50vh;
    position: relative;

    /* overflow: hidden */
    min-height: 500px;
}

@media (max-width:767px) {
    .halfscreen {
        height: auto;
    }

    .fullscreen {
        height: auto;
    }
}

.divider {
    background: linear-gradient(180deg, var(--dark) 0%, #000000 100%);
    text-align: center;
    color: var(--gold);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 48px), 50% 100%, 0% calc(100% - 48px));
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 48px), 50% 100%, 0% calc(100% - 48px));
    position: relative;
    z-index: 1;
    padding: 72px 24px 120px;
}

.divider__bg,
.footer__bg,
.divider__bg--disabled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../gfx/diamonds.png');
    background-position: center center;
    background-size: cover;
}

.divider__bg--disabled {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 48px), 50% 100%, 0% calc(100% - 48px));
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 48px), 50% 100%, 0% calc(100% - 48px));
}

.footer__contactoptions {
    background: var(--dark);
    text-align: center;
    color: var(--gold);
    position: relative;
    z-index: 1;
    padding: 48px 24px 48px 48px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width:1028px) {
    .footer__contactoptions {
        padding: 24px 12px 24px 24px;
    }
}

.footer__bg {
    background-image: url('../gfx/contact.png');
}

.divider--disabled {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 120px 24px 120px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--dark);
}

main {
    overflow: hidden;
}

.mb_1 {
    margin-bottom: 24px;
}

@media (max-width:1279px) {
    .mb_1 {
        margin-bottom: 12px;
    }
}

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

/* 3_3_CSS_Grid */
.mainGrid {
    display: grid;
    grid-template-columns: 1fr repeat(12, 1fr) 1fr;
    grid-template-rows: auto;
    grid-column-gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width:767px) {
    .mainGrid {
        grid-column-gap: 8px;
        padding-left: 0;
        padding-right: 0;
        grid-template-rows: auto auto;
    }
}

@media (min-width:1280px) {
    .mainGrid {
        grid-template-columns: 1fr repeat(12, 72px) 1fr;
    }
}

.centerGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 24px;
}

@media (max-width:767px) {
    .centerGrid {
        grid-column-gap: 8px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.infodivider {
    grid-template-rows: 1fr auto 1fr;
}

@media (max-width:1279px) {
    .infodivider {
        grid-template-rows: 1fr auto auto 1fr;
        padding-top: 48px;
        padding-bottom: 8px;
        min-height: 520px;
    }
}

.infodivider_heading {
    grid-row: 1;
    grid-column: 1 / 15;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 48px;
}

/* 4_Components */
/* 4_1_1_main_Nav */
.mainNav__titleLink {
    margin-left: 24px;
    overflow: hidden;
    width: 152px;
    transition: margin-left 0.3s ease-in;
}

.startHeader--sub .mainNav__titleLink {
    margin-left: 12px;
    color: var(--gold);
}

@media (prefers-color-scheme: dark){
    .startHeader--sub .mainNav__titleLink {
        color: var(--gold);
    }
}

.mainNav__titleLink svg {
    width: 100%;
}

.mainNav__titleLink svg path {
    fill: var(--gold);
}

@media (prefers-color-scheme: dark) {
    .is_fixed .mainNav__titleLink svg path,
    .startHeader--sub .mainNav__titleLink svg path {
        fill: var(--gold);
    }
}

.is_fixed .mainNav__titleLink {
    transition: margin-left 0.3s ease-out;
}

.mainNav {
    display: flex;
    height: 48px;
    width: auto;
    align-items: center;
    justify-content: flex-end;
    z-index: 102;
    position: relative;
}

.mainNav__primary {
    display: flex;
    align-items: center;
    height: 48px;
}

@media (max-width:1279px) {
    .mainNav__primary {
        height: auto;
    }
}

/* .mainNav__mainLinks:after {
    content: '';
    width: 100%;
    height: 24px;
    position: absolute;
    bottom: -24px;
    right: 0;
    background-image: url('../gfx/menushadow.png');
} */
.mainNav__mainLinks {
    position: relative;
    list-style: none;
    display: flex;
    padding-left: 0;
}

.menutoggle {
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: absolute;
    right: 128px;
}

.menutoggle svg line {
    stroke: var(--gold);
}

@media (prefers-color-scheme: dark) {
    .menutoggle svg line {
        stroke: var(--gold);
    }
}

@media (max-width:767px) {
    .mainNav__mainLinks {
        height: auto;
        flex-direction: column;
        align-self: flex-start;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.mainNav__mainLinks li a,
.flycta {
    display: flex;
    height: 48px;
    color: var(--gold);
    background-color: var(--dark);
    padding-left: 24px;
    padding-right: 24px;
    align-items: center;
    text-transform: uppercase;
    position: relative;
}

.mainNav__mainLinks li.is_active a {
    color: var(--dark);
    background-color: var(--gold);
}

@media (prefers-color-scheme: dark) {
    .mainNav__mainLinks li a {
        background-color: var(--dark);
        color: var(--gold);
    }

    .mainNav__mainLinks li.is_active a {
        color: var(--dark);
        background-color: #ffffff;
    }
}

.mainNav__mainLinks li.is_active {
    border-right: 1px solid var(--dark);
    margin-right: -1px;
    z-index: 200;
}

@media (max-width:1279px) {
    .mainNav__mainLinks li.is_active {
        border-right: 0;
        border-bottom: 1px solid var(--dark);
        margin-right: 0;
        margin-bottom: -1px;
    }
}

.mainNav__mainLinks li.is_active a::before {
    display: none;
}

.mainNav__mainLinks li a::before {
    content: '';
    display: block;
    width: 1px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 12px;
    background: #aaa;
    z-index: 100;
}

@media (max-width:767px) {
    .mainNav__mainLinks li a::before {
        height: 1px;
        width: 24px;
        left: 24px;
        top: 0px;
    }
}

.mainNav__mainLinks li:first-child a::before {
    display: none;
}

.mainNav__mainLinkLabel {
    height: 17px;
    align-self: center;
    font-weight: 100;
    margin-right: 4px;
    font-size: 14px;
}

/* 4_2_call_to_action */
.cta span {
    position: relative;
    z-index: 1;
    color: var(--dark);
}

.cta {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    grid-column: span 12;
    padding: 12px 12px;
    font-family: 'Raleway', sans-serif;
}

.cta--disabled {
    opacity: 0.4;
    filter: grayscale();
}

@media (max-width:479px) {
    .cta {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 24px;
    }
}

.cta--phone,
.cta--mail {
    display: block;
    margin-top: 24px;
    color: var(--dark);
}

@media (max-width:1279px) {
    .cta--phone,
    .cta--mail {
        font-size: 18px;
    }
}

.cta--startfooter {
    background: var(--gold);
}

/* 4_3_atf_gallery_herobg */
.atf {
    width: 100%;
    height: 100vh;
    position: relative;
}

.atf__bgcontainer,
.gal__bgcontainer,
.full__bgcontainer {
    height: 100%;
}

.atf__bgcontainer,
.full__bgcontainer {
    padding: 48px 24px;
    display: flex;
    justify-content: center;
}

@media (max-width:767px) {
    .atf__bgcontainer,
    .full__bgcontainer {
        position: absolute;
        width: 100%;
    }
}

@media (max-width:479px) {
    .atf__bgcontainer,
    .full__bgcontainer {
        padding: 48px 16px;
    }
}

.gal__bgcontainer {
    position: absolute;
    grid-column: 4 / 15;
    width: 100%;
    padding-top: 48px;
    grid-row: 1 / 2;
    padding-bottom: 48px;
}

.animatecardBG:nth-child(even) .gal__bgcontainer {
    grid-column: 1 / 12;
}

.fullbg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fullbg_padding {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    padding: 120px 24px 200px;
}

@media (max-width:767px) {
    .fullbg_padding {
        position: relative;
    }
}

@media (max-width:559px) {
    .fullbg_padding {
        padding: 128px 0px 14px 14px;
    }
}

.fullbg_padding video,
.fullbg_padding img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.fullbg_padding .teaservideo {
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    visibility: hidden;
    height: 100%;
}

@media (max-width:767px) {
    .gal__bgcontainer {
        grid-column: 1 / 15;
        position: relative;
        grid-row: 2 / 3;
        padding-top: 0;
        margin-top: -48px;
        height: calc(100% + 48px);
    }
}

.gal__bgcontainer--1 {
    grid-column: 1 / 12;
}

@media (max-width:767px) {
    .gal__bgcontainer--1 {
        grid-column: 1 / 12;
        grid-row: 1 / 2;
    }
}

.gal__bgcontainer--2 {
    grid-column: 4 / 10;
    grid-row: 2 / 3;
    padding-top: 0;
}

@media (max-width:479px) {
    .gal__bgcontainer--2 {
        grid-row: 3 / 4;
    }

    .gal__bgcontainer--2 img {
        height: auto;
    }
}

.gal__bgcontainer--3 {
    grid-column: 10 / 14;
    grid-row: 2 / 3;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width:1279px) {
    .gal__bgcontainer--3 {
        grid-column: 10 / 15;
    }
}

@media (max-width:479px) {
    .gal__bgcontainer--3 {
        grid-row: 5 / 6;
    }
}

.gal__bgcontainer--1,
.gal__bgcontainer--2,
.gal__bgcontainer--3 {
    position: relative;
}

.gal__bgcontainer--1 img,
.gal__bgcontainer--3 img {
    height: auto;
}

@media (max-width:479px) {
    .gal__bgcontainer--1,
    .gal__bgcontainer--2,
    .gal__bgcontainer--3 {
        grid-column: 1 / 15;
    }
}

.gal__bgcontainer .gal__bgimage {
    width: 100%;
}

.gal__bgimage {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gal__bginfo {
    position: absolute;
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    align-self: flex-end;
    width: 100%;
}

@media (max-width:1279px) {
    .gal__bginfo {
        grid-column: 2 / 5;
    }
}

@media (max-width:767px) {
    .gal__bginfo {
        grid-column: 1 / 15;
        grid-row: 3 / 4;
        position: relative;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.gal__bginfo p i {
    font-size: 14px;
    line-height: 20px;
}

@media (max-width:1279px) {
    .gal__bginfo p i {
        font-size: 12px;
        line-height: 16px;
    }
}

.gal__bgimage--full {
    height: calc(100% - 24px);
}

.full__bgimg {
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-size: cover;
}

.full__contentcontainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 72px;
}

@media (max-width:767px) {
    .full__contentcontainer {
        position: relative;
    }
}

.gal__content {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    height: auto;
    grid-column: 1 / span 7;
    background-image: linear-gradient(90deg, var(--dark) 0%, rgba(37, 31, 10, 0.65) 100%);
    color: var(--gold);
    align-self: center;
    padding: 48px;
    position: relative;
}

.gal__content--livemusic {
    display: flex;
    grid-column: 1 / span 11;
}

@media (max-width:1279px) {
    .gal__content {
        grid-column: 1 / span 8;
    }

    .gal__content--livemusic {
        display: flex;
        grid-column: 1 / span 11;
    }
}

.animatecardBG:nth-child(even) .gal__content {
    grid-column: 8 / span 7;
    background-image: linear-gradient(90deg, rgba(37, 31, 10, 0.65) 0%, var(--dark) 100%);
}

.gal__content--rightsmall {
    grid-column: 12 / span 3;
    padding: 0;
    background: none;
}

@media (max-width:1279px) {
    .gal__content--right {
        grid-column: 7 / span 8;
    }
}

@media (max-width:1279px) {
    .gal__content--rightsmall {
        grid-column: 12 / span 3;
    }
}

@media (max-width:1029px) {
    .gal__content {
        padding: 24px 36px;
        grid-column: 1 / span 12;
    }
}

@media (max-width:1029px) {
    .gal__content--right {
        grid-column: 3 / span 12;
    }
}

@media (max-width:1029px) {
    .gal__content--rightsmall {
        grid-column: 12 / span 3;
        padding: 0;
    }
}

@media (max-width:767px) {
    .gal__content {
        padding: 48px;
        grid-column: 1 /15;
    }
}

.gal__content--light {
    grid-column: span 7;
    background: rgba(0, 0, 0, 0.9);
    color: var(--gold);
    grid-row: 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (prefers-color-scheme: dark){
    .gal__content--light {
        background: rgba(0, 0, 0, 0.9);
        color: var(--gold);
    }
}

.gal__content p:last-child {
    margin: 0;
}

@media (max-width:1279px) {
    .gal__content--light {
        grid-column: 1 / span 14;
        background: rgba(0, 0, 0, 0.7);
    }
}

@media (prefers-color-scheme: dark){
    .gal__content--light {
        background: rgba(0, 0, 0, 0.7);
    }
}

@media (max-width:1279px) {
    .gal__content--lightfirst {
        grid-row: 2 / 3;
        padding-bottom: 0;
    }
}

@media (max-width:1279px) {
    .gal__content--lightsecond {
        grid-row: 3 / 4;
        padding-top: 0;
    }
}

@media (max-width:767px) {
    .gal__content--light {
        grid-column: 1 / span 15;
        position: relative;
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* 4_4_Footer */
.startFooter {
    display: flex;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    min-height: 100vh;
}

.kontaktfoto {
    width: 50%;
    background-size: cover;
    background-position: center center;
    background-image: url('../img/Kontakt.jpg');
    background-color: #000000;
    min-height: 100vh;
}

@media (max-width:767px) {
    .kontaktfoto {
        width: 100%;
        order: 2;
        margin-top: -24px;
    }

    .startFooter {
        height: auto;
        flex-direction: column;
        padding-top: 48px;
    }
}

.footer__legal li {
    margin-right: 8px;
}

.footer__legal {
    width: 100%;
    display: flex;
    list-style-type: none;
    padding-left: 0px;
    margin-top: 0px;
    justify-content: center;
}

.footer__social {
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.footer__social li {
    margin: 0 6px;
}

@media (max-width:478px) {
    .footer__social li img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width:767px) {
    .footer__contactoptions {
        position: relative;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width:1279px) {
    .footer__legal {
        bottom: 12px;
        font-size: 12px;
        line-height: 24px;
    }
}

@media (max-width:767px) {
    .footer__legal {
        padding-bottom: 12px;
        padding-top: 12px;
        background-color: var(--dark);
        margin-bottom: 0;
        bottom: 0;
    }
}

@media (max-width:478px) {
    .footer__legal {
        display: block;
    }
}

.footer__heading {
    margin-bottom: 0px;
    text-align: center;
}

@media (max-width:1279px) {
    .footer__heading {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 36px;
    }
}

@media (max-width:767px) {
    .footer__heading {
        margin-bottom: 24px;
        min-height: auto;
        text-align: center;
    }
}

/* 4_5_Kategorie_Slide_Divider */
@media (max-width:1279px) {
    .katintro {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

/* 5_Seitenspezifisch */
/* 5_1_Startseite */
.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}

.startweiter {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: var(--gold);
    line-height: 24px;
    z-index: 2;
    font-family: 'Raleway', sans-serif;
    background-color: rgba(23, 25, 20, 0.92);
    padding: 24px;
}

.startweiter span {
    font-size: 30px;
    line-height: 45px;
}

@media (max-width:1029px) {
    .startweiter {
        font-size: 16px;
        line-height: 24px;
        bottom: 0;
        padding-left: 16px;
        padding-right: 16px;
        width: 100vw;
    }
}

.playvideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 400;
    font-size: 48px;
    color: var(--gold);
    font-family: 'Norican', serif;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: none;
}

@media (max-width:1029px) {
    .playvideo {
        top: 72px;
        transform: translate(-50%, 0);
        font-size: 36px;
    }
}

.pilars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 8px;
    height: calc(100vh - 200px);
    position: relative;
    z-index: 0;
    color: var(--gold);
    background: var(--gold);
    border-bottom: 12px solid var(--gold);
    min-height: 600px;
}

@media (max-width:1029px) {
    .pilars {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-column-gap: 0;
        height: auto;
        position: relative;
        z-index: 0;
        color: var(--gold);
        background: var(--gold);
        border-bottom: 12px solid var(--gold);
        grid-row-gap: 8px;
    }
}

.pilar {
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

@media (max-width:1279px) {
    /* .pilar {
        align-items: flex-end;
    } */
}

@media (max-width:1029px) {
    .pilar {
        padding-top: 172px;
    }
}

.pilar_content {
    position: relative;
    text-align: center;
    padding-right: 24px;
    padding-left: 24px;
    width: 100%;
    top: 36px;
}

.pilar_content h2::after {
    content: '';
    width: 40px;
    height: 1px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
}

.pilar_content h2 {
    position: relative;
}

@media (max-width:1279px) {
    .pilar_content {
        top: 0px;
    }
}

.pilar_diamond {
    position: absolute;
    top: 78px;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%);
}

.pilar_contentList {
    list-style: none;
    padding: 0;
    font-size: 24px;
    line-height: 48px;
    font-weight: 600;
}

.pilar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 21, 0, 0.7) 0%, rgba(5, 21, 0, 0.85) 51.04%, rgba(5, 21, 0, 0.7) 100%);
    top: 0;
    left: 0;
}

.pilar--1 {
    background-image: url('../img/1first.jpg');
    z-index: 0;
}

.pilar--2 {
    background-image: url('../img/1second.jpg');
    z-index: 1;
}

.pilar--3 {
    background-image: url('../img/1third.jpg');
    z-index: 0;
}

/* 5_3_Branding */
.legalcontainer {
    padding-left: 48px;
    padding-right: 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold);
}

@media (prefers-color-scheme: dark){
    .legalcontainer {
        color: var(--gold);
    }
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.jump {
    cursor: pointer;
}

.startHeader {
    position: absolute;
    top: 36px;
    z-index: 100;
    display: flex;
    width: auto;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    transition: background 0.4s ease-in;
    min-width: 100%;
}

.startHeader--sub {
    position: fixed;
    top: 12px;
}

.is_fixed {
    transition: background 0.3s ease-out;
    position: fixed;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

@media (prefers-color-scheme: dark) {
    .is_fixed {
        background-color: rgba(0, 0, 0, 0.35);
    }
}

.footer_h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 12px;
}

.instacontainer {
    overflow: hidden;
    padding-bottom: 24px;
}

.instacontainer .instacontent {
}

.shadow-top {
    box-shadow: 0px -2px 8px 1px rgba(0,0,0,0.1);
}

a.flycta {
    position: fixed;
    bottom: 24px;
    right: 12px;
    color: var(--gold);
    background-color: var(--dark);
    font-size: 30px;
    border-radius: 8px;
    text-transform: none;
    border-width: 0;
    box-shadow: 0px 12px 20px -10px var(--dark);
    z-index: 100;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

@media (max-width:559px) {
    a.flycta {
        bottom: 12px;
        right: 0px;
        font-size: 18px;
    }
}

.gutscheinbutton {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width:767px) {
    .gutscheinbutton {
        left: 50%;
        top: 75%;
    }
}
