/* Optional global CSS file. */

/* Maven Pro */

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body,
html {
    font-family: 'Maven Pro', sans-serif;
    font-weight: 400;

    background: #111;
    color: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
}

/** START Buttons **/

.button {
    display: inline-block;

    padding: 10px 28px 11px;

    text-decoration: none;
    font-weight: 700;

    transition: all .4s ease;
}

.button.primary {
    position: relative;
    overflow: hidden;

    background: #e62020;
    color: #fff;

    transition: transform .2s ease;
}

.button.primary::before {
    content: '';

    position: absolute;
    top: -20%;
    left: -20%;

    width: 30px;
    height: 140%;

    opacity: 0;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, .08) 15%,
        rgba(255, 255, 255, .28) 50%,
        rgba(255, 255, 255, .08) 85%,
        transparent 100%
    );

    transform: skewX(-20deg);

    pointer-events: none;
}

.button.primary:hover::before {
    opacity: 1;
    animation: button-shine .45s ease-out forwards;
}

@keyframes button-shine {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

.button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
}

.button.secondary:hover {
    background: #e62020;
    border-color: #e62020;
}

/** END Buttons **/

@media screen and (max-width: 991px) {
    h2 {
        font-size: 1.5rem;
    }
}

/** START Header **/

.site_header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    background: #111;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    z-index: 999;
}

.site_header_container {
    position: relative;

    height: 100%;
    max-width: 1920px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

/* Navigation */

.site_header_nav {
    flex: 1;

    height: 100%;

    display: flex;
    align-items: center;

    padding-left: 48px;
}

.site_header_menu {
    display: flex;
    align-items: center;
    gap: 32px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site_header_menu li {
    margin: 0;
}

.header_cta_button {
    margin-left: 20px;
}

.site_header_menu a {
    color: rgba(255, 255, 255, .7);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;

    text-decoration: none;

    transition: color .2s ease;
}

.site_header_menu a:hover,
.site_header_menu .current-menu-item > a,
.site_header_menu .current_page_item > a {
    color: #fff;
}

/* Logo Bereich */

.site_header_logo_area {
    position: relative;

    width: 280px;
    height: 100%;

    background: #181818;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.site_header_logo_area::before {
    content: '';

    position: absolute;
    left: -17px;
    top: 0;

    width: 85px;
    height: calc(100% + 50px);

    background: #181818;

    transform: skewX(45deg);

    z-index: 1;
}

.site_header_logo_area::after {
    content: '';

    position: absolute;
    right: 0;
    bottom: -50px;

    width: 210px;
    height: 50px;

    background: #181818;

    z-index: 1;
}

.site_header .menu-item a {
    transition: all .4s;
}

.site_header .menu-item a:hover {
    color: #e62020;
}

.site_header_logo {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 210px;

    margin-bottom: -45px;
}

.site_header_logo img {
    display: block;

    width: 100%;
    height: auto;
}

/* Burger */

.site_header_burger {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.site_header_burger span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #fff;

    transition: .25s ease;
}

.site_header.is_open .site_header_burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site_header.is_open .site_header_burger span:nth-child(2) {
    opacity: 0;
}

.site_header.is_open .site_header_burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */

.site_mobile_menu {
    display: none;
}

/* Mobile */

@media (max-width: 1199px) {
    .site_header {
        height: 72px;
    }

    .site_header_nav {
        display: none;
    }

    .site_header_logo {
        margin-bottom: 0;
    }

    .site_header_logo_area::before,
    .site_header_logo_area::after {
        display: none;
    }

    .site_header_logo_area {
        background: none;
    }

    .site_header_container {
        justify-content: space-between;

        padding: 0 24px;
    }

    .site_header_burger {
        display: block;
    }

    .site_mobile_cta {
        margin-top: 35px;
    }

    .site_mobile_social_title {
        margin-bottom: 10px;
    }

    .site_mobile_menu {
        position: fixed;
        top: 72px;
        left: 0;

        width: 100%;
        height: calc(100vh - 72px);

        padding: 32px 24px;

        background: #111;

        display: flex;
        flex-direction: column;

        transform: translateX(100%);

        transition: transform .3s ease;

        overflow-y: auto;
    }

    .site_header.is_open .site_mobile_menu {
        transform: translateX(0);
    }

    .site_mobile_menu_list {
        margin: 0;
        padding: 0;

        list-style: none;
    }

    .site_mobile_menu_list li {
        margin: 0;
    }

    .site_mobile_menu_list a {
        display: block;

        padding: 14px 0;

        color: #fff;

        font-size: 28px;
        font-weight: 900;

        text-transform: uppercase;
        text-decoration: none;
    }

    .site_mobile_social {
        margin-top: 48px;
    }

    .site_mobile_social_icons {
        display: flex;
        gap: 12px;
    }

    .site_mobile_social_icon {
        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255, 255, 255, .1);

        color: #fff;
    }

    .site_mobile_social_icon svg {
        width: 18px;
        height: 18px;

        fill: currentColor;
    }

    .site_mobile_social_icon img {
        width: 18px;
        height: 18px;

        object-fit: contain;
    }

    .site_mobile_legal {
        margin-top: auto;
        padding-top: 40px;
    }

    .site_mobile_legal_menu {
        margin: 0;
        padding: 0;

        list-style: none;
    }

    .site_mobile_legal_menu a {
        color: rgba(255, 255, 255, .45);

        font-size: 12px;

        text-transform: uppercase;
        text-decoration: none;
    }
}

/** END Header **/

/** START Footer **/

.site_footer {
    padding: 64px 48px 36px;

    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.site_footer_container {
    max-width: 1440px;

    margin: 0 auto;
}

.site_footer_top {
    display: flex;
    gap: 80px;

    padding-bottom: 48px;
    margin-bottom: 28px;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site_footer_brand,
.site_footer_social {
    flex: 1;
}

.site_footer_logo {
    max-width: 180px;
}

.site_footer_logo img {
    display: block;

    width: 100%;
    height: auto;
}

.site_footer_firmierung {
    margin-top: 20px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.site_footer_motto {
    max-width: 320px;

    margin-top: 16px;

    color: rgba(255, 255, 255, .35);

    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
}

.site_footer_social_title {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, .3);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .25em;
    text-transform: uppercase;
}

.site_footer_social_text {
    max-width: 360px;

    color: rgba(255, 255, 255, .3);

    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}

.site_footer_social_icons {
    display: flex;
    gap: 10px;

    margin-top: 24px;
}

.site_footer_social_icon {
    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, .1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, .4);

    transition:
        border-color .2s ease,
        color .2s ease,
        background .2s ease;
}

.site_footer_social_icon:hover {
    border-color: #e62020;

    color: #fff;
    background: rgba(230, 32, 32, .12);
}

.site_footer_social_icon svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}

.site_footer_social_icon img {
    width: 18px;
    height: 18px;

    object-fit: contain;
}

.site_footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}

.site_footer_copyright {
    color: rgba(255, 255, 255, .18);

    font-size: 12px;
}

.site_footer_legal_menu {
    display: flex;
    gap: 22px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site_footer_legal_menu a {
    color: rgba(255, 255, 255, .22);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .1em;
    text-transform: uppercase;

    text-decoration: none;

    transition: color .2s ease;
}

.site_footer_legal_menu a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .site_footer {
        padding: 56px 24px 32px;
    }

    .site_footer_top {
        flex-direction: column;
        gap: 48px;
    }

    .site_footer_bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site_footer_legal_menu {
        flex-direction: column;
        gap: 12px;
    }
}

/** END Footer **/

/** START Form **/

.wpcf7-submit {
    border: none;

    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.form_item label {
    opacity: 0;

    height: 0;

    pointer-events: none;
}

.form_item {
    width: 100%;
}

.form_item input,
.form_item textarea {
    width: 100%;

    padding: 10px 0;

    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 1rem;

    color: #fff;
    background: none;

    border: none;
    border-bottom: 2px solid #e62020;

    outline: none;
}

.form_item textarea {
    max-height: 50px;
}

.form_item_container {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}

.form_item_submit {
    position: relative;
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    right: -72px;
}

.required_notice {
    text-align: right;

    color: rgba(255, 255, 255, .5);

    font-size: .8rem;
}

.form_item_submit p {
    text-align: right;
}

.form_item_submit p input {
    width: 100%;
}

/* Custom Dropdown */

.custom_select_native {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    border: 0 !important;
}

.custom_select {
    position: relative;

    width: 100%;
}

.custom_select_trigger {
    position: relative;

    width: 100%;

    padding: 10px 42px 10px 0;

    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 1rem;

    color: #757575;
    text-align: left;

    background: transparent;

    border: 0;
    border-bottom: 2px solid #e62020;

    outline: none;
    cursor: pointer;

    transition:
        color .2s ease,
        border-color .2s ease;
}

.custom_select.has_value .custom_select_trigger {
    color: #fff;
}

.custom_select_trigger:focus-visible {
    border-bottom-color: #fff;
}

.custom_select_arrow {
    position: absolute;
    top: 50%;
    right: 4px;

    width: 10px;
    height: 10px;

    border-right: 2px solid #e62020;
    border-bottom: 2px solid #e62020;

    transform: translateY(-70%) rotate(45deg);

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.custom_select.is_open .custom_select_arrow {
    transform: translateY(-25%) rotate(225deg);
}

.custom_select.is_open .custom_select_trigger {
    border-bottom-color: #fff;
}

.custom_select_options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;

    z-index: 50;

    max-height: 310px;

    padding: 8px;

    overflow-y: auto;

    background: #181818;
    border: 1px solid rgba(255, 255, 255, .14);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .4);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.custom_select.is_open .custom_select_options {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.custom_select_option {
    position: relative;

    display: block;

    width: 100%;

    padding: 12px 14px;

    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
    font-size: .9rem;

    color: rgba(255, 255, 255, .65);
    text-align: left;

    background: transparent;
    border: 0;

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}

.custom_select_option::before {
    content: '';

    position: absolute;
    top: 50%;
    left: 0;

    width: 3px;
    height: 0;

    background: #e62020;

    transform: translateY(-50%);

    transition: height .2s ease;
}

.custom_select_option:hover,
.custom_select_option:focus-visible {
    padding-left: 20px;

    color: #fff;
    background: rgba(230, 32, 32, .08);

    outline: none;
}

.custom_select_option:hover::before,
.custom_select_option:focus-visible::before,
.custom_select_option.is_selected::before {
    height: calc(100% - 12px);
}

.custom_select_option.is_selected {
    padding-left: 20px;

    color: #fff;
    background: rgba(230, 32, 32, .12);
}

.custom_select_option.is_placeholder {
    display: none;
}

.custom_select_options::-webkit-scrollbar {
    width: 6px;
}

.custom_select_options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .04);
}

.custom_select_options::-webkit-scrollbar-thumb {
    background: rgba(230, 32, 32, .7);
}

/* Custom Checkbox */

.form_item_acceptance {
    color: rgba(255, 255, 255, .6);

    font-size: .9rem;
    line-height: 1.6;
}

.form_item_acceptance .wpcf7-list-item {
    margin: 0;
}

.form_item_acceptance label {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    cursor: pointer;
}

.form_item_acceptance input[type='checkbox'] {
    position: absolute;

    opacity: 0;

    width: 0;
    height: 0;

    pointer-events: none;
}

.form_item_acceptance .wpcf7-list-item-label {
    position: relative;

    display: block;

    padding-left: 34px;

    color: rgba(255, 255, 255, .6);
}

.form_item_acceptance .wpcf7-list-item-label::before {
    content: '';

    position: absolute;
    left: 0;
    top: 1px;

    width: 20px;
    height: 20px;

    border: 2px solid #e62020;
    background: transparent;

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.form_item_acceptance .wpcf7-list-item-label::after {
    content: '';

    position: absolute;
    left: 7px;
    top: 4px;

    width: 6px;
    height: 11px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform: rotate(45deg) scale(0);
    transform-origin: center;

    transition: transform .2s ease;
}

.form_item_acceptance input[type='checkbox']:checked
+ .wpcf7-list-item-label::before {
    background: #e62020;

    box-shadow: 0 0 0 4px rgba(230, 32, 32, .12);
}

.form_item_acceptance input[type='checkbox']:checked
+ .wpcf7-list-item-label::after {
    transform: rotate(45deg) scale(1);
}

.form_item_acceptance a {
    color: #e62020;

    text-decoration: none;
}

.form_item_acceptance a:hover {
    color: #fff;
}

.wpcf7-submit.button.primary {
    position: relative;

    overflow: hidden;

    cursor: pointer;
}

.wpcf7-submit.button.primary::before {
    content: '';

    position: absolute;
    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, .12) 20%,
        rgba(255, 255, 255, .28) 50%,
        rgba(255, 255, 255, .12) 80%,
        transparent 100%
    );

    transition: left .28s ease;

    pointer-events: none;
}

.wpcf7-submit.button.primary:hover::before {
    left: 160%;
}

@media (max-width: 575px) {
    .form_item_container {
        flex-direction: column;

        gap: 0;
    }

    .custom_select_options {
        max-height: 260px;
    }
}

/** END Form **/