@charset "UTF-8";

/* Global CSS Configuration */

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: local('Manrope Regular'), local('Manrope-Regular'),
        url(../fonts/manrope/manrope-regular.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-weight: 500;
    src: local('Manrope Medium'), local('Manrope-Medium'),
        url(../fonts/manrope/manrope-medium.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-weight: 600;
    src: local('Manrope Semibold'), local('Manrope-Semibold'),
        url(../fonts/manrope/manrope-semibold.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-weight: 700;
    src: local('Manrope Bold'), local('Manrope-Bold'),
        url(../fonts/manrope/manrope-bold.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'inter-tight';
    font-weight: 700;
    src: local('InterTight Bold'), local('InterTight-Bold'),
        url(../fonts/inter_tight/InterTight-Bold.ttf) format('truetype');
    font-display: swap;
}


@font-face {
    font-family: 'inter-tight';
    font-weight: 800;
    src: local('InterTight ExtraBold'), local('InterTight-ExtraBold'),
        url(../fonts/inter_tight/InterTight-ExtraBold.ttf) format('truetype');
    font-display: swap;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', 'Inter', sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #191919;
    background-color: #f4f4f4;
}


html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1, h2, h1 span {
    font-family: 'inter-tight', sans-serif;
    font-weight: 800;
}

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

ul {
    list-style: none;
}
ol {
    list-style: none;
}

.bgh_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}


.bgh_prime_cta {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #000000; /* Primary color */
    border-radius: 5px;
    text-decoration: none;
}

.bgh_prime_cta:hover {
    background-color: #333333; /* Darker shade on hover */
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    position: absolute;
    width: 100%;
}

.bg_header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

header .bgh_nav {
    display: none;
}

/* footer */

footer {
    border-top: 1px solid #cacaca;
    background: #fff;
}

.bg_footer {
    padding: 20px;
}

.bg_footer_logo span {
    display: block;
    height: 42px;
    width: 165px;
    background: url("/static/images/global/hf-icons.svg") no-repeat -12px -36px;
}

.bg_footer_branding {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #2E8B5735;
}

.bg_footer_logo {
    margin: auto;
    text-align: center;
    width: max-content;
}

.bg_footer_email {text-align: center;}

.bg_footer_email a::before {
    display: inline-block;
    content: " ";
    width: 25px;
    height: 21px;
    background: url('/static/images/global/hf-icons.svg') no-repeat -183px -48px;
    position: relative;
    top: 5px;
    left: -5px;
}

.bg_footer_email a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.bg_footer_social {
    text-align: center;
}

.bgft_content {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 20px;
}

.bg_footer_social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bgf_sm_icons  {
    display: block;
    background: url('/static/images/global/hf-icons.svg') no-repeat;
    height: 25px;
    width: 25px;
    transform: scale(1.2);
}

.bgf_sm_x {
    background-position: -36px -8px;
}

.bgf_sm_linkedin {background-position: -71px -8px;width: 30px;}

.bgf_sm_facebook {background-position: -177px -8px;}

.bgf_sm_youtube {background-position: -107px -8px;}

.bgf_sm_instagram {background-position: -142px -8px;}

.bg_footer_legal {
    padding: 30px 0;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
}

.bg_footer_copyright p {
    font-size: 14px;
    font-weight: 600;
    color: #191919;
}

.bg_footer_legal_docs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 0px 0 30px;
}

.bg_footer_legal_docs ul li {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    position: relative;
}

.bg_footer_legal_docs ul li:nth-child(odd) {
    border-right: 1px solid #cacaca;
    padding-right: 20px;
}

.bg_footer_legal_docs ul li:nth-child(even) {
    padding-left: 20px;
}

@media screen and (min-width: 548px) {


    /* Header */
    .bg_header {
        justify-content: space-between;
    }
    header .bgh_nav {
        display: flex;
        align-items: center;
        gap: 25px;
        justify-content: center;
    }

    .bgh_lang ul,
    .bgh_lang {
        display: none;
    }
    .bgh_lang.bgh_lang_show {
        display: block;
    }

    .bgh_lang_label {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        padding: 0 0 0 30px;
    }


    .bgh_waitlist_link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        color: #191919;
        background-color: #fff; /* Primary color */
        border: 2px solid #191919; /* Border color */
        border-radius: 5px;
        text-decoration: none;
    }

    .bgh_waitlist_link:hover {
        background-color: #191919;
        color: #fff;
    }

    .bgh_lang.bgh_lang_show {
        position: relative;
    }

    .bgh_lang_show ul.bgh_lang_list {
        display: none;
        position: absolute;
        top: 40px;
        left: -15px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
        z-index: 100;
        flex-direction: column;
        gap: 14px;
    }

    .bgh_lang.bgh_lang_show.bgh_lang_opvisible ul.bgh_lang_list {
        display: flex;
    }

    .bgh_lang_list li a{
        position: relative;
        font-size: 16px;
        font-weight: 500;
        padding: 0 0 0 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1.5;
    }

    .bgh_lang_list li a::before,
    .bgh_lang_label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 2px;
        width: 25px;
        height: 19px;
        background: url('/static/images/global/hf-icons.svg') no-repeat;
    }

    .bgh_nav .bgh_lang_en::before {
        background-position: -7px -10px;
    }

    .bgh_nav .bgh_lang_de::before {
        background-position: -11px -83px;
    }


    /* Footer */
    
    .bg_footer_branding {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .bg_footer_logo {
        margin: 0;
        height: fit-content;
    }

    .bgft_content {
        display: none;
    }

    .bg_footer_legal_docs ul li:not(:last-child) {
        border-right: 1px solid #cacaca;
        padding:0  20px ;
    }


   
}

@media screen and (min-width: 1100px) {
     
    /* header */
    .bgh_lang_label {
        cursor: pointer;
    }

    /* footer */

    .bg_footer {
        max-width: 1400px;
        margin: 0 auto;
    }

    .bgft_content {
        display: block;
        margin: 0;
    }

    .bg_footer_social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .bg_footer_legal {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .bg_footer_legal_docs ul {
        margin: 0;
    }
}




/* Cookies managers */
.bgc-cookies-banner {
    position: fixed;
    bottom: 0;
    background: #fff;
    max-width: 610px;
    color: #000;
    z-index: 10000;
    padding: 30px 30px;
    margin: 10px;
    display: block;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-align: center;
    border: 1px solid #cacaca;
    border-radius: 5px;
}

.bgcb-title {
    font-size: 20px;
    font-family: 'inter-tight', sans-serif;
    width: 100%;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #cacaca; 
}

.bgcb-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.bgcb-content a {
    color: #2E8B57;
    font-weight: 600
}

.bgcb-content-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap
}

.bgcb-cta button {
    padding: 10px 15px;
    color: #2E8B57;
    background: none;
    border: 1px solid #2E8B57;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer
}

.bgcb-cta-accept.bgcb-cta button {
    background: #000;
    color: #fff;
    border:1px solid #000;
}

.bgc-cookies-widget {
    background: url('/static/images/global/cookies.svg');
    height: 70px;
    width: 70px;
    background-size: cover;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 1000000;
    cursor: pointer
}

.bgc-cookies-configure-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 999999;
    background: #00000050
}

.bgc-cookies-manage {
    position: fixed;
    margin: auto;
    max-width: 98%;
    z-index: 999999;
    background: #fff;
    max-height: 80vh;
    overflow-y: scroll;
    top: 8vh;
    left: 1%;
    padding: 24px 20px;
    border-radius: 4px
}

.bgc-cookies-manage.bgcb-widget-active {
    left: 10px;
    top: auto;
    bottom: 100px;
    max-height: 75vh
}

.bgcb-manage-wrapper h4 {
    font-size: 18px;
    margin: 0 0 20px;
    font-weight: 700
}

.bgcb-manage-wrapper p {
    font-size: 14px;
    margin: 0 0 20px;
    font-weight: 400;
    line-height: 1.6
}

.bgcb-manage-wrapper p a {
    color: #2E8B57
}

.bgcbmc-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

.bgcbmc-title h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    position: relative;
    line-height: 1
}

.bgcb-manage-content-wrapper .bgcb-manage-content:nth-child(1) .bgcbmc-title .bgcbmc-configure-fixed {
    color: #2E8B57;
    font-size: 14px;
    font-weight: 500
}

.bgcbmc-title h5::before,
.bgcbmc-title h5::after {
    content: "";
    background: #000;
    transition: all .3s ease;
    position: absolute
}

.bgcbmc-title h5::before {
    width: 12px;
    height: 2px;
    left: -23px;
    top: 8px
}

.bgcbmc-title h5::after {
    content: "";
    width: 2px;
    height: 12px;
    left: -18px;
    top: 3px
}

.bgcb-manage-content.open .bgcbmc-title h5::after {
    transform: rotate(90deg)
}

.bgcb-manage-content {
    margin: 15px 0;
    padding: 20px 20px 20px 40px;
    background: #f4f9ff
}

.bgcbmc-desc a {
    font-size: 16px;
    color: #2E8B57;
    text-decoration: underline;
    font-weight: 500
}

.bgcbmc-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: margin-top .3s linear, opacity .3s linear, max-height .3s linear .3s
}

.bgcb-manage-content.open .bgcbmc-desc {
    opacity: 1;
    max-height: 175px;
    margin-top: 20px;
    transition: margin-top .3s linear, opacity .5s linear, max-height .1s linear
}

.bgcb-manage-close.bgcb-cta {
    margin-top: 30px
}

.bgcbmc-configure {
    position: relative;
    right: 0;
    top: 2px;
    width: 44px;
    height: 20px;
    display: inline-block;
    padding: 2px 10px;
    box-sizing: border-box
}

.bgcb-bg-orange {
    background: #8c8c8c;
    width: 100%;
    display: inline-block;
    border-radius: 18px;
    height: 100%
}

.bgcb-tick {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 0 7px -2px #7d7d7d;
    transition: all .3s ease
}

.bgcb-tick::after,
.bgcb-tick::before {
    content: "";
    position: absolute;
    height: 2px;
    transform: rotate(45deg)
}

.bgcb-tick::before {
    width: 9px;
    transform: rotate(-45deg);
    left: 7px;
    top: 10px
}

.bgcb-tick::after,
.bgcb-tick::before {
    background: #a7a7a7;
    width: 10px;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -5px
}

.bgcbmc-configure.on .bgcb-bg-orange {
    background-color: #2E8B57
}

.bgcbmc-configure.on .bgcb-tick::before,
.bgcbmc-configure.on .bgcb-tick::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    width: 5px;
    height: 2px;
    background: #2E8B57;
    transform: rotate(45deg);
    transition: all .3s ease
}

.bgcbmc-configure.on .bgcb-tick::before {
    width: 9px;
    transform: rotate(-45deg);
    left: 12px;
    top: 10px
}

.bgcbmc-configure.on .bgcb-tick {
    left: 22px
}

.bgcb-manage-container-close {
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    position: absolute;
    right: 15px;
    top: 15px;
    border: 1px solid #a7a7a7;
    transition: all .3s ease;
    cursor: pointer
}

.bgcb-manage-container-close::after,
.bgcb-manage-container-close::before {
    background: #a7a7a7;
    width: 12px;
    left: 50%;
    top: 50%;
    margin-top: 0;
    margin-left: -6px;
    content: "";
    position: absolute;
    transform: rotate(45deg);
    height: 1px;
    cursor: pointer
}

.bgcb-manage-container-close::before {
    transform: rotate(-45deg)
}

@media screen and (max-width:548px) {
    #bgcb-cta-widget.bgc-cookies-widget {
        display: none !important
    }
}

@media screen and (min-width:548px) {
    .bgc-cookies-manage {
        max-width: 80%;
        top: 10vh;
        max-height: 80vh;
        left: 10%
    }
}

@media screen and (min-width:1100px) {

    .bgc-cookies-banner {left: auto;right: 10px;bottom: 10px;}
    
    .bgcb-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px 25px;
        max-width: 1170px;
        margin: auto;
        text-align: left;
    }

    .bgcb-content {
        text-align: left;
        margin: 0;
        font-size: 14px;
        width: auto;
        max-width: 770px
    }

    .bgcb-title {
        padding: 10px;
    }

    .bgcb-content-cta {
        width: auto;
        justify-content: end
    }

    .bgcb-cta button {
        font-size: 14px
    }

    .bgcb-content-wrapper.bgcb-br-present {
        flex-wrap: wrap
    }

    .bgcb-content-wrapper.bgcb-br-present .bgcb-content,
    .bgcb-content-wrapper.bgcb-br-present .bgcb-content-cta {
        width: 100%;
        justify-content: flex-start;
        max-width: inherit
    }

    .bgc-cookies-manage {
        max-width: 40%;
        left: 30%
    }

    .bgcb-manage-wrapper h4 {
        font-size: 20px
    }

    .bgcb-manage-wrapper p,
    .bgcb-manage-content-wrapper .bgcb-manage-content:nth-child(1) .bgcbmc-title .bgcbmc-configure-fixed {
        font-size: 16px
    }

    .bgcbmc-title h5 {
        font-size: 18px
    }
}