:root{
    --font-base-240: clamp(100px, 10vw, 240px);
    --font-base-80: clamp(38px, 10vw, 80px);
    --font-base-30: clamp(18px, 6vw, 30px);
    --font-base-20: clamp(16px, 6vw, 20px);
    --font-base-16: clamp(14px, 6vw, 16px);
}




main::before {
    content: "";
    position: fixed !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--main-bg);
    z-index: 2;
    pointer-events: none;
}

.hero-video-fix .fullwidth-video{
    position: fixed !important;
    min-width: 100.1% !important;
}

.hero-video-fix .fullwidth-video::before{
    content: "";
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50vh;
    background: linear-gradient(180deg, rgba(0, 9, 15, 0) 0%, #00090F 100%);
    z-index: 2;
}


@media (max-width: 425px) {
    .fullwidth-box.video-background .fullwidth-video{
        height: 100vh !important;
    }

    .fullwidth-box.video-background .fullwidth-video video{
        height: 100% !important;
    }
}


/* --------------- Navigation --------------- */
#messe-subnav{
    background: transparent !important;
    border-bottom: 1px solid #fff !important;
}
/* --------------- HERO --------------- */

.escrs-hero-title{
    color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase !important;
    margin-bottom: clamp(80px, 6vw, 150px);
}

.escrs-hero-title-sub{
    font-size: var(--font-base-80) !important;
    font-style: italic;
    letter-spacing: 0.1em;
    line-height: 100%;
    text-align: center;
}

.escrs-hero-title-main{
    font-size: var(--font-base-240) !important;
    font-weight: 900 !important;
    font-style: italic;
    letter-spacing: 0.035em;
    line-height: 0.75em;
    margin-bottom: 25px;
    text-align: center;
}

/* --------------- HERO SCROLL INDICATOR --------------- */
.hero-scroll-indicator {
    position: absolute !important;
    bottom: 0;
    margin: 0;
}

.scroll-indicator-wrapper {
    display: flex;
    justify-content: center;
}

.scroll-indicator-wrapper a {
    display: inline-flex;
    transition: opacity 0.3s ease;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-indicator-wrapper a svg{
    opacity: .5;
    transition: opacity 0.3s ease;
}

.scroll-indicator-wrapper a i{
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.scroll-indicator-wrapper a:hover svg{
    opacity: 1;	
}

.scroll-indicator-wrapper a:hover i{
    opacity: 1;
}

.scroll-indicator-wrapper svg rect:first-child {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.4s ease;
}

.scroll-indicator-wrapper a:hover svg rect:first-child {
    transform: translateY(16px);
}

@media (max-width: 780px) {
    .scroll-indicator-wrapper a svg{
        display: none !important;
    }
    .scroll-indicator-wrapper a i{
        opacity: 1;
    }
}

/* --------------- HERO TEASER --------------- */

.escrs-heroTeaser-wrapper {
    --hover-expand: 20px;

    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    position: relative;
    isolation: isolate;

    display: block;
    width: fit-content;
    max-width: 750px;
    padding: 0 20px;

    color: #fff !important;
    align-self: center;
    text-decoration: none;
}

.escrs-heroTeaser-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background: rgba(0, 0, 0, 0.35);
    border: 2px solid #00C5CC;
    border-radius: 20px;

    transition:
        inset-inline 0.3s ease,
        background-color 0.3s ease;
}


.escrs-heroTeaser-wrapper:hover::before {
    inset-inline: calc(var(--hover-expand) * -1);
    background: rgba(0, 0, 0, 0.6);
}

.escrs-heroTeaser {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.escrs-heroTeaser .heroTeaser-label {
    width: fit-content;
    padding: 6px 20px;
    margin-bottom: 10px;

    background-color: #00C5CC;
    border-radius: 0 0 20px 20px;

    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--font-base-20);
    text-align: center;
}

.escrs-heroTeaser .heroTeaser-title {
    color: #fff;
    text-align: center;
    font-size: var(--font-base-30) !important;
    font-weight: 700;
    margin-bottom: 20px !important;
}

.escrs-heroTeaser .heroTeaser-info {
    font-size: var(--font-base-16);
}

/* Auf kleinen Bildschirmen keine Verbreiterung */
@media (max-width: 780px) {
    .escrs-heroTeaser-wrapper {
        --hover-expand: 0px;
    }
}

/* --------------- SYMPOSIUM --------------- */
.escrs-symp-cont .symp-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 20px
}

.escrs-symp-cont .symp-item:nth-child(odd) {
    background-color: #0086CD;
}

.escrs-symp-cont .symp-item:nth-child(even) {
    background-color: #005D95;
}

.escrs-symp-cont .symp-desrc {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.escrs-symp-cont .symp-title {
    font-weight: 700;
}

.escrs-symp-cont .symp-name {
    font-size: 15px;
}

.escrs-symp-cont .symp-item img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
}

/* --------------- FORMULAR --------------- */

:root {
    --form-input-background: rgba(217, 217, 217, 0.1);
    --form-input-border: none;

    --form-input-error-background: rgba(255, 0, 0, 0.25);
    --form-input-error-color: rgba(255, 0, 0, 0.75);
}

#angebot {
    overflow: visible;
}
#angebot #nex-forms.opti_-_angebot .align_right {
    text-align: center!important;
    margin-top: 15px;
}

#angebot #nex-forms.opti_-_angebot .form_field button.btn:hover {
    background-color: var(--awb-custom17)!important;
    color:#fff!important;
}

#angebot input{
    background: var(--form-input-background) !important;
    border: var(--form-input-border) !important;
}

#angebot span.nf_select-selection.ui-state-default.nf_select-selection--single {
    background: var(--form-input-background) !important;
    border: var(--form-input-border) !important;
}

#angebot textarea{
    background: var(--form-input-background) !important;
    border: var(--form-input-border) !important;
}

#angebot .the-icon-field-container.the_input_element {
    background: var(--form-input-background) !important;
    border: var(--form-input-border) !important;
}

#angebot #nex-forms div.radio-group label a, #nex-forms div.checkbox-group label a{
    background: var(--form-input-background) !important;
    border: var(--form-input-border) !important;
}



#nex-forms .icon-dropdown .icon-container,
#nex-forms .nf_select-dropdown {
    background-color: #f7f7f7!important;
}


#nex-forms .the-icon-option-container .icon-label div,
#nex-forms .the-icon-option-container .icon-holder span,
#nex-forms .nf_select-dropdown {
    color: #333!important;
}

#nex-forms .icon-holder .on-label {
    color: #9e9e9e!important;
}

#nex-forms .form_field.multi-icon-select .error_msg {
    left: 0;
}

#post-8309 #nex-forms.opti_-_angebot .form_field button.btn {
    border-radius: 20px!important;
    background-color: #fff!important;
    color: #0086cd!important;
}

#post-8309 #nex-forms.opti_-_angebot .form_field button.btn:hover {
    background-color: #0086cd!important;
}



#nex-forms.nex-forms .has_error .form-control, #nex-forms.nex-forms .has_error .the-radios a, #nex-forms.nex-forms .has_error .input-group-addon.postfix {
    background: var(--form-input-error-background) !important;
}

#nex-forms .error_msg {
    color: var(--form-input-error-color) !important;
}




#_56648{
    display: none !important;
}

#nex-forms.escrs_-_angebot_en .form_field button.btn{
	box-shadow:none!important;
	padding: 9px 0!important;
	width:calc(50% - 15px);
    font-size: 16px;
	font-weight:500;
	letter-spacing: 1px;
    text-transform: uppercase;
}

#nex-forms.escrs_-_angebot_en .form_field button.btn:hover {
	box-shadow:none!important;
	background-color:#ffffff!important;
	color:#0086cd!important;
}

#nex-forms.escrs_-_angebot_en div.radio-group label span.input-label, #nex-forms div.checkbox-group label .input-label {
	font-size: 16px;
	font-weight: 600;
	line-height: 12px;
}

#nex-forms.escrs_-_angebot_en .error_msg {
    position: relative;
	top: 6px;
	margin-bottom: 4px;
	height: auto;
    clear: both;
}

#nex-forms.escrs_-_angebot_en .check-icon.fa {
	font-family: 'Font Awesome 5 Pro'!important;
    font-weight: 400!important;
    font-size: 16px!important;
}
    
