.datepicker {
  width: -moz-min-content;
  width: min-content;
}

.datepicker:not(.active) {
  display: none;
}

.datepicker-dropdown {
  position: absolute;
  z-index: 20;
  padding-top: 4px;
}

.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
}

.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.datepicker-main {
  flex: auto;
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: hsl(0, 0%, 96%);
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: hsl(0, 0%, 96%);
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-controls {
  display: flex;
}

.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}

.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}

.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}

.datepicker-header .datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}

.datepicker-footer .datepicker-controls .button {
  flex: auto;
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  font-size: 0.75rem;
}

.datepicker-controls .view-switch {
  flex: auto;
}

.datepicker-controls .prev-button,
.datepicker-controls .next-button {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  flex: 0 0 14.2857142857%;
}

.datepicker-controls .prev-button.disabled,
.datepicker-controls .next-button.disabled {
  visibility: hidden;
}

.datepicker-view,
.datepicker-grid {
  display: flex;
}

.datepicker-view {
  align-items: stretch;
  width: 15.75rem;
}

.datepicker-grid {
  flex-wrap: wrap;
  flex: auto;
}

.datepicker .days {
  display: flex;
  flex-direction: column;
  flex: auto;
}

.datepicker .days-of-week {
  display: flex;
}

.datepicker .week-numbers {
  display: flex;
  flex-direction: column;
  flex: 0 0 9.6774193548%;
}

.datepicker .weeks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: auto;
}

.datepicker span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.datepicker .dow {
  height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.datepicker .week {
  flex: auto;
  color: hsl(0, 0%, 71%);
  font-size: 0.75rem;
}

.datepicker-cell,
.datepicker .days .dow {
  flex-basis: 14.2857142857%;
}

.datepicker-cell {
  height: 2.25rem;
}

.datepicker-cell:not(.day) {
  flex-basis: 25%;
  height: 4.5rem;
}

.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.datepicker-cell.focused:not(.selected) {
  background-color: #e9e9e9;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: hsl(229, 53%, 53%);
  color: #fff;
  font-weight: 600;
}

.datepicker-cell.disabled {
  color: hsl(0, 0%, 86%);
}

.datepicker-cell.prev:not(.disabled),
.datepicker-cell.next:not(.disabled) {
  color: hsl(0, 0%, 48%);
}

.datepicker-cell.prev.selected,
.datepicker-cell.next.selected {
  color: #e6e6e6;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: hsl(0, 0%, 96%);
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #efefef;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e9e9e9;
}

.datepicker-cell.today:not(.selected) {
  background-color: hsl(171, 100%, 41%);
}

.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}

.datepicker-cell.today.focused:not(.selected) {
  background-color: #00ccad;
}

.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: hsl(0, 0%, 71%);
  color: #fff;
}

.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #b1b1b1;
}

.datepicker-cell.range-start:not(.range-end) {
  border-radius: 4px 0 0 4px;
}

.datepicker-cell.range-end:not(.range-start) {
  border-radius: 0 4px 4px 0;
}

.datepicker-cell.range {
  border-radius: 0;
  background-color: hsl(0, 0%, 86%);
}

.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d6d6d6;
}

.datepicker-cell.range.disabled {
  color: #c5c5c5;
}

.datepicker-cell.range.focused {
  background-color: #d0d0d0;
}

.datepicker-input.in-edit {
  border-color: #3d56c3;
}

.datepicker-input.in-edit:focus,
.datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(61, 86, 195, 0.2);
}
:root{--grid-size: 42px;--font-size-base: 2rem}.layout-container,#admin__inner{max-width:1440px;min-width:1024px;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1023px){.layout-container,#admin__inner{max-width:100%;min-width:100%}}@media only screen and (min-width: 768px){.fv-overview-page,.node--type--job__header,.node--type--job__detail,.node--type--job__summary,.paragraph--type--jobs,.paragraph--type--row,.paragraph--type--tabs,.paragraph--type--text,.paragraph--type--curved-teaser,.paragraph--type--programs,.paragraph--type--quarterly-programs,.paragraph--type--video,.paragraph--type--events{padding:0 var(--grid-size)}}@media only screen and (max-width: 767px){.fv-overview-page,.node--type--job__header,.node--type--job__detail,.node--type--job__summary,.paragraph--type--jobs,.paragraph--type--row,.paragraph--type--tabs,.paragraph--type--text,.paragraph--type--curved-teaser,.paragraph--type--programs,.paragraph--type--quarterly-programs,.paragraph--type--video,.paragraph--type--events{padding:0 calc(var(--grid-size))}}.node--type--job__detail>div p,.node--type--job__detail>div ul,.node--type--job__detail>div ol,.node--type--job__detail>div h3,.node--type--job__detail>div h4,.node--type--job__detail>div h5,.node--type--job__detail>div h6,.paragraph p+p,.paragraph p+ul,.paragraph p+ol,.paragraph p+table,.paragraph ul+p,.paragraph ul+ul,.paragraph ul+ol,.paragraph ul+table,.paragraph ol+p,.paragraph ol+ul,.paragraph ol+ol,.paragraph ol+table,.paragraph table+p,.paragraph table+ul,.paragraph table+ol,.paragraph table+table{margin-top:calc(var(--font-size-base) * .5)}.fv-overview-page__card__hero-tagline,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline{display:flex;justify-content:center;align-items:center;flex-direction:column}#contact>div:nth-of-type(3) a:before,#contact>div:nth-of-type(4) a:before{content:'';display:inline-block;vertical-align:middle;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg) no-repeat center;background-size:auto var(--font-size-base);height:var(--font-size-base);width:24px;position:relative;top:-1px}#contact>div:nth-of-type(3) a,#contact>div:nth-of-type(4) a{display:block}#contact>div:nth-of-type(3) a+a,#contact>div:nth-of-type(3) #contact>div:nth-of-type(4) a+a,#contact>div:nth-of-type(4) #contact>div:nth-of-type(3) a+a,#contact>div:nth-of-type(4) a+a{margin-top:calc(var(--grid-size)  * .5)}#header__inner>div>div>a,#contact>div:nth-of-type(1) a,#contact>div:nth-of-type(2) a{font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;position:relative;display:block;color:inherit;text-decoration:none}@media (min-width: 320px) and (max-width: 1399px){#header__inner>div>div>a,#contact>div:nth-of-type(1) a,#contact>div:nth-of-type(2) a{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){#header__inner>div>div>a,#contact>div:nth-of-type(1) a,#contact>div:nth-of-type(2) a{font-size:20px}}@media only screen and (min-width: 360px){#header__inner>div>div>a,#contact>div:nth-of-type(1) a,#contact>div:nth-of-type(2) a{padding-left:calc(var(--grid-size) * 2)}}@media only screen and (max-width: 359px){#header__inner>div>div>a,#contact>div:nth-of-type(1) a,#contact>div:nth-of-type(2) a{padding-left:calc(var(--grid-size) * 1.5)}}#header__inner>div>div>a em,#contact>div:nth-of-type(1) a em,#contact>div:nth-of-type(2) a em{font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;font-style:inherit}@media (min-width: 320px) and (max-width: 1399px){#header__inner>div>div>a em,#contact>div:nth-of-type(1) a em,#contact>div:nth-of-type(2) a em{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){#header__inner>div>div>a em,#contact>div:nth-of-type(1) a em,#contact>div:nth-of-type(2) a em{font-size:20px}}#header__inner>div>div>a+a,#contact>div:nth-of-type(1) #header__inner>div>div>a+a,#contact>div:nth-of-type(1) a+a,#contact>div:nth-of-type(2) #header__inner>div>div>a+a,#contact>div:nth-of-type(1) #contact>div:nth-of-type(2) a+a,#contact>div:nth-of-type(2) #contact>div:nth-of-type(1) a+a,#contact>div:nth-of-type(2) a+a{margin-top:calc(var(--grid-size)  * .5)}#header__inner>div>div>a svg,#contact>div:nth-of-type(1) a svg,#contact>div:nth-of-type(2) a svg{width:25px;height:auto}#header__inner>div>div>a>span,#contact>div:nth-of-type(1) a>span,#contact>div:nth-of-type(2) a>span,#header__inner>div>div>a>svg,#contact>div:nth-of-type(1) a>svg,#contact>div:nth-of-type(2) a>svg{position:absolute;display:block;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}#header__inner>div>div>a>span,#contact>div:nth-of-type(1) a>span,#contact>div:nth-of-type(2) a>span{border-radius:50px;width:50px;height:50px}#header__inner>div>div>a>span>svg,#contact>div:nth-of-type(1) a>span>svg,#contact>div:nth-of-type(2) a>span>svg{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}#header__inner>div>div>a{padding-left:var(--grid-size)}#header__inner>div>div>a svg{width:12.5px}#header__inner>div>div>a>span{width:25px;height:25px}.paragraph--type--offers>div .field_offers_wrapper article div a:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg);width:10px;display:inline-block;margin-right:.75rem;position:relative;top:1px}.paragraph--type--onlyfy a.button.back,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a,#user-login-form input[type="submit"],#user-pass input[type="submit"],#header__inner>div>div>button:not(#header__burger),.google-maps__tooltip>a,.programs__show-more,.paragraph--type--all-centers-map .all-centers-map__consent button,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button,.paragraph--type--facilities-map .facilities-map__consent button,.paragraph--type--text a.button,.paragraph--type--image-text a.button,.paragraph--type--text-text a.button,.paragraph--type--teaser-fullwidth a.button,.paragraph--type--teaser--left-right a.button,.text-type-formatted a.button,.ck-content a.button,.paragraph--type--all-centers-map .all-centers-map__filter>div button,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button,.paragraph--type--facilities-map .facilities-map__filter>div button,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;-webkit-writing-mode:none;-webkit-appearance:none;appearance:none;display:block;border-radius:50px;background-color:#F5F3ED;border:none;min-height:50px;padding:calc(50px - (var(--font-size-base) * 2)) calc(var(--grid-size) / 2);text-align:center;transition:color .25s linear, background .25s linear, -webkit-transform .25s ease-in-out;transition:color .25s linear, background .25s linear, transform .25s ease-in-out;transition:color .25s linear, background .25s linear, transform .25s ease-in-out, -webkit-transform .25s ease-in-out;text-decoration:none !important;cursor:pointer}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--onlyfy a.button.back,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a,#user-login-form input[type="submit"],#user-pass input[type="submit"],#header__inner>div>div>button:not(#header__burger),.google-maps__tooltip>a,.programs__show-more,.paragraph--type--all-centers-map .all-centers-map__consent button,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button,.paragraph--type--facilities-map .facilities-map__consent button,.paragraph--type--text a.button,.paragraph--type--image-text a.button,.paragraph--type--text-text a.button,.paragraph--type--teaser-fullwidth a.button,.paragraph--type--teaser--left-right a.button,.text-type-formatted a.button,.ck-content a.button,.paragraph--type--all-centers-map .all-centers-map__filter>div button,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button,.paragraph--type--facilities-map .facilities-map__filter>div button,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--onlyfy a.button.back,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a,#user-login-form input[type="submit"],#user-pass input[type="submit"],#header__inner>div>div>button:not(#header__burger),.google-maps__tooltip>a,.programs__show-more,.paragraph--type--all-centers-map .all-centers-map__consent button,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button,.paragraph--type--facilities-map .facilities-map__consent button,.paragraph--type--text a.button,.paragraph--type--image-text a.button,.paragraph--type--text-text a.button,.paragraph--type--teaser-fullwidth a.button,.paragraph--type--teaser--left-right a.button,.text-type-formatted a.button,.ck-content a.button,.paragraph--type--all-centers-map .all-centers-map__filter>div button,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button,.paragraph--type--facilities-map .facilities-map__filter>div button,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button{font-size:20px}}.paragraph--type--onlyfy a.button.back:not(.-disabled):hover,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a:not(.-disabled):hover,#user-login-form input:not(.-disabled):hover[type="submit"],#user-pass input:not(.-disabled):hover[type="submit"],#header__inner>div>div>button:not(.-disabled):hover:not(#header__burger),.google-maps__tooltip>a:not(.-disabled):hover,.programs__show-more:not(.-disabled):hover,.paragraph--type--all-centers-map .all-centers-map__consent button:not(.-disabled):hover,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button:not(.-disabled):hover,.paragraph--type--facilities-map .facilities-map__consent button:not(.-disabled):hover,.paragraph--type--text a.button:not(.-disabled):hover,.paragraph--type--image-text a.button:not(.-disabled):hover,.paragraph--type--text-text a.button:not(.-disabled):hover,.paragraph--type--teaser-fullwidth a.button:not(.-disabled):hover,.paragraph--type--teaser--left-right a.button:not(.-disabled):hover,.text-type-formatted a.button:not(.-disabled):hover,.ck-content a.button:not(.-disabled):hover,.paragraph--type--all-centers-map .all-centers-map__filter>div button:not(.-disabled):hover,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button:not(.-disabled):hover,.paragraph--type--facilities-map .facilities-map__filter>div button:not(.-disabled):hover,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button:not(.-disabled):hover{-webkit-transform:translateY(-5px);transform:translateY(-5px)}.paragraph--type--onlyfy a.-disabled.button.back,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a.-disabled,#user-login-form input.-disabled[type="submit"],#user-pass input.-disabled[type="submit"],#header__inner>div>div>button.-disabled:not(#header__burger),.google-maps__tooltip>a.-disabled,.-disabled.programs__show-more,.paragraph--type--all-centers-map .all-centers-map__consent button.-disabled,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button.-disabled,.paragraph--type--facilities-map .facilities-map__consent button.-disabled,.paragraph--type--text a.-disabled.button,.paragraph--type--image-text a.-disabled.button,.paragraph--type--text-text a.-disabled.button,.paragraph--type--teaser-fullwidth a.-disabled.button,.paragraph--type--teaser--left-right a.-disabled.button,.text-type-formatted a.-disabled.button,.ck-content a.-disabled.button,.paragraph--type--all-centers-map .all-centers-map__filter>div button.-disabled,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button.-disabled,.paragraph--type--facilities-map .facilities-map__filter>div button.-disabled,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .-disabled.field_video_slider_item_button{cursor:default;color:#7B7B7B}@media only screen and (max-width: 374px){.paragraph--type--onlyfy a.button.back:after,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a:after,#user-login-form input[type="submit"]:after,#user-pass input[type="submit"]:after,#header__inner>div>div>button:not(#header__burger):after,.google-maps__tooltip>a:after,.programs__show-more:after,.paragraph--type--all-centers-map .all-centers-map__consent button:after,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button:after,.paragraph--type--facilities-map .facilities-map__consent button:after,.paragraph--type--text a.button:after,.paragraph--type--image-text a.button:after,.paragraph--type--text-text a.button:after,.paragraph--type--teaser-fullwidth a.button:after,.paragraph--type--teaser--left-right a.button:after,.text-type-formatted a.button:after,.ck-content a.button:after,.paragraph--type--all-centers-map .all-centers-map__filter>div button:after,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button:after,.paragraph--type--facilities-map .facilities-map__filter>div button:after,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button:after,.paragraph--type--onlyfy a.button.back:before,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a:before,#user-login-form input[type="submit"]:before,#user-pass input[type="submit"]:before,#header__inner>div>div>button:not(#header__burger):before,.google-maps__tooltip>a:before,.programs__show-more:before,.paragraph--type--all-centers-map .all-centers-map__consent button:before,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button:before,.paragraph--type--facilities-map .facilities-map__consent button:before,.paragraph--type--text a.button:before,.paragraph--type--image-text a.button:before,.paragraph--type--text-text a.button:before,.paragraph--type--teaser-fullwidth a.button:before,.paragraph--type--teaser--left-right a.button:before,.text-type-formatted a.button:before,.ck-content a.button:before,.paragraph--type--all-centers-map .all-centers-map__filter>div button:before,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button:before,.paragraph--type--facilities-map .facilities-map__filter>div button:before,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button:before{display:none}}.paragraph--type--newsletter-registration .nl2go button[type="submit"]{padding-top:0;padding-bottom:0;border:none}.paragraph--type--onlyfy a.button.back:after,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a:after{content:'';display:inline-block;vertical-align:middle;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg) no-repeat center;background-size:auto var(--font-size-base);height:var(--font-size-base);width:24px;position:relative;top:4px;float:right}#user-login-form input[type="submit"],#user-pass input[type="submit"],.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a{min-height:25px;padding:10px}#header__inner>div>div>button:not(#header__burger),.google-maps__tooltip>a,.programs__show-more{height:1em;box-sizing:content-box;min-height:0;padding:10px 20px;line-height:1}.paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--seal .field_download a{background-color:rgba(0,0,0,0);min-height:50px;padding:calc((50px - (var(--font-size-base) * 1.5)) * .5) 25px;text-align:center;display:inline-block;text-decoration:none !important;position:relative;border-radius:1000em;color:#262626;transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear;padding:0;text-align:left;display:flex !important;align-content:center;align-items:center}.paragraph--type--teaser .field_link a[href$=".pdf"]:before,.paragraph--type--teaser .field_second_link a[href$=".pdf"]:before,.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"]:before,.paragraph--type--seal .field_download a:before,.paragraph--type--teaser .field_link a[href$=".pdf"]:after,.paragraph--type--teaser .field_second_link a[href$=".pdf"]:after,.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"]:after,.paragraph--type--seal .field_download a:after{position:relative;top:1px;display:inline-block;vertical-align:middle;height:var(--font-size-base);min-width:var(--font-size-base);line-height:1 !important}.paragraph--type--teaser .field_link a[href$=".pdf"]:before,.paragraph--type--teaser .field_second_link a[href$=".pdf"]:before,.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"]:before,.paragraph--type--seal .field_download a:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/download.svg);float:left;margin-right:var(--font-size-base)}.paragraph--type--teaser .field_link a:hover[href$=".pdf"],.paragraph--type--teaser .field_second_link a:hover[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a:hover[href$=".pdf"],.paragraph--type--seal .field_download a:hover{-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (min-width: 768px){.paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--seal .field_download a{min-width:250px}}@media only screen and (max-width: 767px){.paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--seal .field_download a{display:block;width:100%}}@media only screen and (max-width: 374px){.paragraph--type--teaser .field_link a[href$=".pdf"]:after,.paragraph--type--teaser .field_second_link a[href$=".pdf"]:after,.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"]:after,.paragraph--type--seal .field_download a:after,.paragraph--type--teaser .field_link a[href$=".pdf"]:before,.paragraph--type--teaser .field_second_link a[href$=".pdf"]:before,.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"]:before,.paragraph--type--seal .field_download a:before{display:none}}.paragraph--type--teaser .field_link a[href$=".pdf"]:before,.paragraph--type--teaser .field_second_link a[href$=".pdf"]:before,.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"]:before,.paragraph--type--seal .field_download a:before{width:50px;height:50px}.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]){background-color:#fff;min-height:50px;padding:calc((50px - (var(--font-size-base) * 1.5)) * .5) 25px;text-align:center;display:inline-block;text-decoration:none !important;position:relative;border-radius:1000em;color:#262626;transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear}.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_link a[href^="//"]:before,.paragraph--type--teaser .field_second_link a[href^="//"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:after,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:after,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:after,.paragraph--type--teaser .field_link a[href^="//"]:after,.paragraph--type--teaser .field_second_link a[href^="//"]:after,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:after,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:after,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:after,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:after,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:after,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:after,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:after{position:relative;top:1px;display:inline-block;vertical-align:middle;height:var(--font-size-base);min-width:var(--font-size-base);line-height:1 !important}.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_link a[href^="//"]:before,.paragraph--type--teaser .field_second_link a[href^="//"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg);float:left;margin-right:var(--font-size-base)}.paragraph--type--teaser .field_link a:hover[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a:hover[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a:hover[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a:hover[href^="//"],.paragraph--type--teaser .field_second_link a:hover[href^="//"],.paragraph--type--curved-teaser .fields_link_download a:hover[href^="//"],.paragraph--type--teaser .field_link a:hover[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a:hover[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a:hover[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a:hover[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a:hover[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a:hover[href^="https://"]:not([href$=".pdf"]){-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (min-width: 768px){.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]){min-width:250px}}@media only screen and (max-width: 767px){.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]){display:block;width:100%}}@media only screen and (max-width: 374px){.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:after,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:after,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:after,.paragraph--type--teaser .field_link a[href^="//"]:after,.paragraph--type--teaser .field_second_link a[href^="//"]:after,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:after,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:after,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:after,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:after,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:after,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:after,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:after,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_link a[href^="//"]:before,.paragraph--type--teaser .field_second_link a[href^="//"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:before{display:none}}.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_link a[href^="//"]:before,.paragraph--type--teaser .field_second_link a[href^="//"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:before{min-width:15px;top:4px}@media only screen and (min-width: 768px) and (max-width: 1023px){.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]){padding-top:12px}.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_link a[href^="//"]:before,.paragraph--type--teaser .field_second_link a[href^="//"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:before{top:3px}}@media only screen and (max-width: 767px){.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]){padding-top:13px}.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="/"]:before,.paragraph--type--teaser .field_link a[href^="//"]:before,.paragraph--type--teaser .field_second_link a[href^="//"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="//"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="http://"]:before,.paragraph--type--teaser .field_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--teaser .field_second_link a:not([href$=".pdf"])[href^="https://"]:before,.paragraph--type--curved-teaser .fields_link_download a:not([href$=".pdf"])[href^="https://"]:before{top:1px}}.paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]{background-color:#fff;min-height:50px;padding:calc((50px - (var(--font-size-base) * 1.5)) * .5) 25px;text-align:center;display:inline-block;text-decoration:none !important;position:relative;border-radius:1000em;color:#262626;transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear}.paragraph--type--teaser .field_link a[href^="tel:"]:before,.paragraph--type--teaser .field_second_link a[href^="tel:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]:before,.paragraph--type--teaser .field_link a[href^="tel:"]:after,.paragraph--type--teaser .field_second_link a[href^="tel:"]:after,.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]:after{position:relative;top:1px;display:inline-block;vertical-align:middle;height:var(--font-size-base);min-width:var(--font-size-base);line-height:1 !important}.paragraph--type--teaser .field_link a[href^="tel:"]:before,.paragraph--type--teaser .field_second_link a[href^="tel:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/phone-red.svg);float:left;margin-right:var(--font-size-base)}.paragraph--type--teaser .field_link a:hover[href^="tel:"],.paragraph--type--teaser .field_second_link a:hover[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a:hover[href^="tel:"]{-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (min-width: 768px){.paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]{min-width:250px}}@media only screen and (max-width: 767px){.paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]{display:block;width:100%}}@media only screen and (max-width: 374px){.paragraph--type--teaser .field_link a[href^="tel:"]:after,.paragraph--type--teaser .field_second_link a[href^="tel:"]:after,.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]:after,.paragraph--type--teaser .field_link a[href^="tel:"]:before,.paragraph--type--teaser .field_second_link a[href^="tel:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]:before{display:none}}.paragraph--type--teaser .field_link a[href^="tel:"]:before,.paragraph--type--teaser .field_second_link a[href^="tel:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"]:before{top:5px;margin-left:-2px}.paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]{background-color:#fff;min-height:50px;padding:calc((50px - (var(--font-size-base) * 1.5)) * .5) 25px;text-align:center;display:inline-block;text-decoration:none !important;position:relative;border-radius:1000em;color:#262626;transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear}.paragraph--type--teaser .field_link a[href^="mailto:"]:before,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:before,.paragraph--type--teaser .field_link a[href^="mailto:"]:after,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:after,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:after{position:relative;top:1px;display:inline-block;vertical-align:middle;height:var(--font-size-base);min-width:var(--font-size-base);line-height:1 !important}.paragraph--type--teaser .field_link a[href^="mailto:"]:before,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:before{content:"";float:left;margin-right:var(--font-size-base)}.paragraph--type--teaser .field_link a:hover[href^="mailto:"],.paragraph--type--teaser .field_second_link a:hover[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a:hover[href^="mailto:"]{-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (min-width: 768px){.paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]{min-width:250px}}@media only screen and (max-width: 767px){.paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]{display:block;width:100%}}@media only screen and (max-width: 374px){.paragraph--type--teaser .field_link a[href^="mailto:"]:after,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:after,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:after,.paragraph--type--teaser .field_link a[href^="mailto:"]:before,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:before{display:none}}.paragraph--type--teaser .field_link a[href^="mailto:"]:before,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:before{width:34px;height:26px;top:1px;margin-left:-9px;margin-right:12px;background-image:url(/themes/frankfurter_verband_theme/dist/fonts/email.svg);background-size:34px auto}@media all and (-ms-high-contrast: none){.paragraph--type--teaser .field_link a[href^="mailto:"]:before,.paragraph--type--teaser .field_second_link a[href^="mailto:"]:before,.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"]:before{top:2px}}.paragraph--type--newsletter-registration .nl2go__group input[type="text"],.paragraph--type--newsletter-registration .nl2go__group input[type="email"],.paragraph--type--newsletter-registration .nl2go__group .custom-input{height:50px;border:solid 2px #262626;border-radius:var(--font-size-base);background:transparent;padding-left:calc(var(--grid-size)  * .5);padding-right:calc(var(--grid-size)  * .5)}article>div>.paragraph+.paragraph:not(.paragraph--type--grid-navigation):not(.paragraph--type--teaser):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--meeting-center-details):not(.paragraph--type--row),.paragraph--type--curved-teaser,.paragraph--type--meeting-center-details .facilities .facility,.paragraph--type--facility-details .facilities .facility,.node--meeting-center .facilities .facility,#footer{position:relative;margin-top:100px}article>div>.paragraph+.paragraph:not(.paragraph--type--grid-navigation):not(.paragraph--type--teaser):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--meeting-center-details):not(.paragraph--type--row),.paragraph+.paragraph.paragraph--type--curved-teaser,.paragraph--type--meeting-center-details .facilities .paragraph+.paragraph.facility,.paragraph--type--facility-details .facilities .paragraph+.paragraph.facility,.node--meeting-center .facilities .paragraph+.paragraph.facility,.paragraph+.paragraph#footer{margin-top:calc(var(--grid-size) * 3)}article>div>.paragraph+.paragraph:not(.paragraph--type--row):not(.paragraph--type--meeting-center-details):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--teaser):not(.paragraph--type--grid-navigation):before,.paragraph--type--curved-teaser:before,.paragraph--type--meeting-center-details .facilities .facility:before,.paragraph--type--facility-details .facilities .facility:before,.node--meeting-center .facilities .facility:before,#footer:before{content:'';display:block;position:absolute;height:75px;background-color:inherit;width:100%;left:0;right:0;top:-65px;-webkit-clip-path:url(#curve--top);clip-path:url(#curve--top);-webkit-transform:scaleY(0.75);transform:scaleY(0.75)}@media only screen and (max-width: 767px){article>div>.paragraph+.paragraph:not(.paragraph--type--row):not(.paragraph--type--meeting-center-details):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--teaser):not(.paragraph--type--grid-navigation):before,.paragraph--type--curved-teaser:before,.paragraph--type--meeting-center-details .facilities .facility:before,.paragraph--type--facility-details .facilities .facility:before,.node--meeting-center .facilities .facility:before,#footer:before{top:-12px;height:15px}}article>div>.paragraph+.paragraph:not(.paragraph--type--grid-navigation):not(.paragraph--type--teaser):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--meeting-center-details):not(.paragraph--type--row),.paragraph--type--curved-teaser,.paragraph--type--meeting-center-details .facilities .facility,.paragraph--type--facility-details .facilities .facility,.node--meeting-center .facilities .facility{position:relative;margin-bottom:100px}article>div>.paragraph+.paragraph:not(.paragraph--type--row):not(.paragraph--type--meeting-center-details):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--teaser):not(.paragraph--type--grid-navigation):after,.paragraph--type--curved-teaser:after,.paragraph--type--meeting-center-details .facilities .facility:after,.paragraph--type--facility-details .facilities .facility:after,.node--meeting-center .facilities .facility:after{content:'';display:block;position:absolute;height:75px;background-color:inherit;width:100%;left:0;right:0;bottom:-65px;-webkit-clip-path:url(#curve--bottom--negative);clip-path:url(#curve--bottom--negative);-webkit-transform:scaleY(0.75);transform:scaleY(0.75)}@media only screen and (max-width: 767px){article>div>.paragraph+.paragraph:not(.paragraph--type--row):not(.paragraph--type--meeting-center-details):not(.paragraph--type--teaser-fullwidth):not(.paragraph--type--teaser):not(.paragraph--type--grid-navigation):after,.paragraph--type--curved-teaser:after,.paragraph--type--meeting-center-details .facilities .facility:after,.paragraph--type--facility-details .facilities .facility:after,.node--meeting-center .facilities .facility:after{bottom:-12px;height:15px}}@supports ((-webkit-clip-path: none) or (clip-path: none)){.paragraph--type--hero-image:before,.paragraph--type--hero-slider:before{content:'';-webkit-clip-path:url(#curve--bottom);clip-path:url(#curve--bottom);display:block;position:absolute;background-color:white;z-index:20}@media only screen and (min-width: 768px){.paragraph--type--hero-image:before,.paragraph--type--hero-slider:before{height:100px;width:calc(100% + 2px);left:0;top:-1px}}@media only screen and (max-width: 767px){.paragraph--type--hero-image:before,.paragraph--type--hero-slider:before{height:50px;width:200%;left:0;top:-1px}}}.paragraph--type--all-centers-map .all-centers-map__legend>div,.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div{-ms-overflow-style:none;scrollbar-width:none}.paragraph--type--all-centers-map .all-centers-map__legend>div::-webkit-scrollbar,.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div::-webkit-scrollbar{display:none}.paragraph--type--all-centers-map .all-centers-map__consent,.paragraph--type--meeting-centers-map .meeting-centers-map__consent,.paragraph--type--facilities-map .facilities-map__consent{background:#F5F3ED;display:flex;flex-direction:column;align-items:center;justify-content:center;position:absolute;z-index:3;width:100%;height:100%}.paragraph--type--all-centers-map .all-centers-map__consent svg,.paragraph--type--meeting-centers-map .meeting-centers-map__consent svg,.paragraph--type--facilities-map .facilities-map__consent svg{max-width:50vw;width:400px}.paragraph--type--all-centers-map .all-centers-map__consent p,.paragraph--type--meeting-centers-map .meeting-centers-map__consent p,.paragraph--type--facilities-map .facilities-map__consent p{max-width:80vw;width:600px}.paragraph--type--all-centers-map .all-centers-map__consent button,.paragraph--type--meeting-centers-map .meeting-centers-map__consent button,.paragraph--type--facilities-map .facilities-map__consent button{background-color:#e1afa8;margin-top:calc(var(--grid-size))}*{margin:0;padding:0;box-sizing:border-box}html{font-size:62.5%}body{-webkit-text-size-adjust:100%}img{border:none;max-width:100%}ul{list-style:none}a,button{cursor:pointer}input,button,textarea{font-family:inherit;font-size:inherit}input:focus,button:focus{outline:none}section,aside,main,header,footer{display:block}@font-face{font-family:'Bree-Regular';font-weight:normal;src:url(/themes/frankfurter_verband_theme/dist/fonts/Bree-Regular.woff2) format("woff2"),url(/themes/frankfurter_verband_theme/dist/fonts/Bree-Regular.woff) format("woff")}@font-face{font-family:'Bree-Bold';font-weight:bold;src:url(/themes/frankfurter_verband_theme/dist/fonts/Bree-Bold.woff2) format("woff2"),url(/themes/frankfurter_verband_theme/dist/fonts/Bree-Bold.woff) format("woff")}@font-face{font-family:'SourceSansPro-Regular';font-weight:normal;src:url(/themes/frankfurter_verband_theme/dist/fonts/SourceSansPro-Regular.woff2) format("woff2"),url(/themes/frankfurter_verband_theme/dist/fonts/SourceSansPro-Regular.woff) format("woff")}@font-face{font-family:'SourceSansPro-Bold';font-weight:bold;src:url(/themes/frankfurter_verband_theme/dist/fonts/SourceSansPro-Bold.woff2) format("woff2"),url(/themes/frankfurter_verband_theme/dist/fonts/SourceSansPro-Bold.woff) format("woff")}.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline,.paragraph--type--hero-image.has-small-image .mobile-headline{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;font-size:36px;color:#B32B23;line-height:1.15}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline,.paragraph--type--hero-image.has-small-image .mobile-headline{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline,.paragraph--type--hero-image.has-small-image .mobile-headline{font-size:45.5px;font-size:calc(36px + (55 - 36) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline,.paragraph--type--hero-image.has-small-image .mobile-headline{font-size:55px}}h1,h2.h1,.paragraph--type--jobs .field_headline,.paragraph--type--offers>div header h2,.paragraph--type--tabs header .field_headline,.paragraph--type--meeting-center-details .facilities header h4,.paragraph--type--facility-details .facilities header h4,.node--meeting-center .facilities header h4,.paragraph--type--meeting-center-details .facilities .facility h2,.paragraph--type--facility-details .facilities .facility h2,.node--meeting-center .facilities .facility h2,.paragraph--type--events__headline .field_headline{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;font-size:32px;color:#B32B23;line-height:1.15}@media only screen and (max-width: 767px){h1,h2.h1,.paragraph--type--jobs .field_headline,.paragraph--type--offers>div header h2,.paragraph--type--tabs header .field_headline,.paragraph--type--meeting-center-details .facilities header h4,.paragraph--type--facility-details .facilities header h4,.node--meeting-center .facilities header h4,.paragraph--type--meeting-center-details .facilities .facility h2,.paragraph--type--facility-details .facilities .facility h2,.node--meeting-center .facilities .facility h2,.paragraph--type--events__headline .field_headline{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media (min-width: 320px) and (max-width: 1399px){h1,h2.h1,.paragraph--type--jobs .field_headline,.paragraph--type--offers>div header h2,.paragraph--type--tabs header .field_headline,.paragraph--type--meeting-center-details .facilities header h4,.paragraph--type--facility-details .facilities header h4,.node--meeting-center .facilities header h4,.paragraph--type--meeting-center-details .facilities .facility h2,.paragraph--type--facility-details .facilities .facility h2,.node--meeting-center .facilities .facility h2,.paragraph--type--events__headline .field_headline{font-size:40px;font-size:calc(32px + (48 - 32) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){h1,h2.h1,.paragraph--type--jobs .field_headline,.paragraph--type--offers>div header h2,.paragraph--type--tabs header .field_headline,.paragraph--type--meeting-center-details .facilities header h4,.paragraph--type--facility-details .facilities header h4,.node--meeting-center .facilities header h4,.paragraph--type--meeting-center-details .facilities .facility h2,.paragraph--type--facility-details .facilities .facility h2,.node--meeting-center .facilities .facility h2,.paragraph--type--events__headline .field_headline{font-size:48px}}h2:not(.h1),.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h1,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h2,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h3,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h4,.paragraph--type--quote .field_quote,.paragraph--type--offers>div .field_offers article h2,.paragraph--type--reasons header *,.paragraph--type--accordion .field_headline,.paragraph--type--teaser .field_headline,.paragraph--type--seals .field_headline,.paragraph--type--columns>h3,.paragraph--type--curved-teaser .field_headline,.paragraph--type--all-centers-map .field_headline,.paragraph--type--meeting-centers-map .field_headline,.paragraph--type--facilities-map .field_headline,.paragraph--type--meeting-center-details .facilities header p,.paragraph--type--facility-details .facilities header p,.node--meeting-center .facilities header p,.paragraph--type--programs .field_headline,.paragraph--type--quarterly-programs .field_headline,.paragraph--type--video .field_video_headline,.paragraph--type--newsletter-registration .field_headline{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;font-size:24px}@media only screen and (max-width: 767px){h2:not(.h1),.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h1,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h2,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h3,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h4,.paragraph--type--quote .field_quote,.paragraph--type--offers>div .field_offers article h2,.paragraph--type--reasons header *,.paragraph--type--accordion .field_headline,.paragraph--type--teaser .field_headline,.paragraph--type--seals .field_headline,.paragraph--type--columns>h3,.paragraph--type--curved-teaser .field_headline,.paragraph--type--all-centers-map .field_headline,.paragraph--type--meeting-centers-map .field_headline,.paragraph--type--facilities-map .field_headline,.paragraph--type--meeting-center-details .facilities header p,.paragraph--type--facility-details .facilities header p,.node--meeting-center .facilities header p,.paragraph--type--programs .field_headline,.paragraph--type--quarterly-programs .field_headline,.paragraph--type--video .field_video_headline,.paragraph--type--newsletter-registration .field_headline{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media (min-width: 320px) and (max-width: 1399px){h2:not(.h1),.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h1,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h2,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h3,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h4,.paragraph--type--quote .field_quote,.paragraph--type--offers>div .field_offers article h2,.paragraph--type--reasons header *,.paragraph--type--accordion .field_headline,.paragraph--type--teaser .field_headline,.paragraph--type--seals .field_headline,.paragraph--type--columns>h3,.paragraph--type--curved-teaser .field_headline,.paragraph--type--all-centers-map .field_headline,.paragraph--type--meeting-centers-map .field_headline,.paragraph--type--facilities-map .field_headline,.paragraph--type--meeting-center-details .facilities header p,.paragraph--type--facility-details .facilities header p,.node--meeting-center .facilities header p,.paragraph--type--programs .field_headline,.paragraph--type--quarterly-programs .field_headline,.paragraph--type--video .field_video_headline,.paragraph--type--newsletter-registration .field_headline{font-size:33px;font-size:calc(24px + (42 - 24) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){h2:not(.h1),.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h1,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h2,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h3,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h4,.paragraph--type--quote .field_quote,.paragraph--type--offers>div .field_offers article h2,.paragraph--type--reasons header *,.paragraph--type--accordion .field_headline,.paragraph--type--teaser .field_headline,.paragraph--type--seals .field_headline,.paragraph--type--columns>h3,.paragraph--type--curved-teaser .field_headline,.paragraph--type--all-centers-map .field_headline,.paragraph--type--meeting-centers-map .field_headline,.paragraph--type--facilities-map .field_headline,.paragraph--type--meeting-center-details .facilities header p,.paragraph--type--facility-details .facilities header p,.node--meeting-center .facilities header p,.paragraph--type--programs .field_headline,.paragraph--type--quarterly-programs .field_headline,.paragraph--type--video .field_video_headline,.paragraph--type--newsletter-registration .field_headline{font-size:42px}}h3,#footer .container h4,.paragraph--type--hero-image .field_headline,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline,.paragraph--type--jobs .field_jobs>div h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h1,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h2,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h4,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h5,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h6,.paragraph--type--all-centers-map .all-centers-map__filter>div label,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div label,.paragraph--type--facilities-map .facilities-map__filter>div label,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_headline{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;font-size:20px}@media only screen and (max-width: 767px){h3,#footer .container h4,.paragraph--type--hero-image .field_headline,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline,.paragraph--type--jobs .field_jobs>div h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h1,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h2,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h4,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h5,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h6,.paragraph--type--all-centers-map .all-centers-map__filter>div label,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div label,.paragraph--type--facilities-map .facilities-map__filter>div label,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_headline{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media (min-width: 320px) and (max-width: 1399px){h3,#footer .container h4,.paragraph--type--hero-image .field_headline,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline,.paragraph--type--jobs .field_jobs>div h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h1,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h2,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h4,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h5,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h6,.paragraph--type--all-centers-map .all-centers-map__filter>div label,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div label,.paragraph--type--facilities-map .facilities-map__filter>div label,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_headline{font-size:26px;font-size:calc(20px + (32 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){h3,#footer .container h4,.paragraph--type--hero-image .field_headline,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline,.paragraph--type--jobs .field_jobs>div h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h1,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h2,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h4,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h5,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h6,.paragraph--type--all-centers-map .all-centers-map__filter>div label,.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div label,.paragraph--type--facilities-map .facilities-map__filter>div label,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_headline{font-size:32px}}:root .row>*{--bs-gutter-x: 30px!important}html:not([data-transitions-enabled]) *{transition:none !important}html{scroll-padding:110px}*{box-sizing:border-box}body{font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;color:#262626;background:rgba(245,243,237,0.5)}@media (min-width: 320px) and (max-width: 1399px){body{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){body{font-size:20px}}b,.paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--seal .field_download a,.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"],.paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"],.paragraph--type--newsletter-registration .nl2go button[type="submit"],strong{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px}@media (min-width: 320px) and (max-width: 1399px){b,.paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--seal .field_download a,.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"],.paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"],.paragraph--type--newsletter-registration .nl2go button[type="submit"],strong{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){b,.paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--seal .field_download a,.paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download a[href^="tel:"],.paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"],.paragraph--type--newsletter-registration .nl2go button[type="submit"],strong{font-size:20px}}.visually-hidden{display:none}a,button{cursor:pointer;text-decoration:underline;color:inherit;transition:color 200ms ease-out}a:hover{color:#B32B23}.box-link{cursor:pointer;display:block;height:100%;left:0;position:absolute;top:0;width:100%;z-index:3}.field_media_file a{color:inherit;opacity:1;transition:opacity .2s ease-out}.field_media_file a:hover{opacity:0.5}.paragraph--type--text ul,.paragraph--type--product-info-with-contact ul,.node--type--job__detail ul{padding-left:20px;list-style-type:disc}.paragraph--type--text ul ul,.paragraph--type--product-info-with-contact ul ul,.node--type--job__detail ul ul{list-style-type:circle}.paragraph--type--text ul ul ul,.paragraph--type--product-info-with-contact ul ul ul,.node--type--job__detail ul ul ul{list-style-type:square}.paragraph--type--text ol,.paragraph--type--product-info-with-contact ol,.node--type--job__detail ol{counter-reset:item;list-style-type:decimal}.paragraph--type--text ol li,.paragraph--type--product-info-with-contact ol li,.node--type--job__detail ol li{display:block}.paragraph--type--text ol li:before,.paragraph--type--product-info-with-contact ol li:before,.node--type--job__detail ol li:before{content:counters(item, ".") ". ";counter-increment:item}.paragraph--type--text ol ol,.paragraph--type--product-info-with-contact ol ol,.node--type--job__detail ol ol{padding-left:20px}table{width:100%}table.-responsive th,table.-responsive td{min-width:150px}table.-responsive.-display-as-list{display:flex;flex-direction:column}table.-responsive.-display-as-list thead{position:absolute;left:-2000vw}table.-responsive.-display-as-list tr{display:flex;flex-direction:column}table.-responsive.-display-as-list tbody{margin-top:2rem;margin-bottom:2rem}table.-responsive.-display-as-list tbody tr td{position:relative;padding-left:50%;padding-top:0.25rem;padding-bottom:0.25rem;display:flex}table.-responsive.-display-as-list tbody tr td:before{content:attr(title);position:absolute;left:0;font-family:FFDaxWebProBold, sans-serif;width:50%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}table.-responsive.-display-as-list tbody tr td:hover{padding-left:0}table.-responsive.-display-as-list tbody tr td:hover:before{white-space:normal;position:static;display:inline-block;min-width:50%}table.-responsive.-display-as-list tbody tr td:first-child{padding-top:0.5rem}table.-responsive.-display-as-list tbody tr td:last-child{padding-bottom:0.5rem}table.-responsive.-display-as-list tbody tr:first-child{border-top:1px solid #D8D8D8}table.-responsive.-display-as-list tbody tr:last-child{border-bottom:1px solid #D8D8D8}table.-responsive:not(.-display-as-list){border-collapse:collapse}.paragraph--type--text table.-responsive:not(.-display-as-list) thead{font-family:FFDaxWebProBold, sans-serif}.paragraph--type--text table.-responsive:not(.-display-as-list) thead th{border-bottom:2px solid;border-top:none}.paragraph--type--text table.-responsive:not(.-display-as-list) th,.paragraph--type--text table.-responsive:not(.-display-as-list) td{vertical-align:top;text-align:left;padding:0.25rem 1rem;border-left:1px solid #D8D8D8;border-right:1px solid #D8D8D8}.paragraph--type--text table.-responsive:not(.-display-as-list) th:not(:last-child),.paragraph--type--text table.-responsive:not(.-display-as-list) td:not(:last-child){padding-right:4rem}.paragraph--type--text table.-responsive:not(.-display-as-list) th:first-child,.paragraph--type--text table.-responsive:not(.-display-as-list) td:first-child{border-left:none}.paragraph--type--text table.-responsive:not(.-display-as-list) th:last-child,.paragraph--type--text table.-responsive:not(.-display-as-list) td:last-child{border-right:none}.paragraph--type--text table.-responsive:not(.-display-as-list) tbody tr:first-child td{border-top:none}.paragraph--type--text table.-responsive:not(.-display-as-list) tbody tr:last-child td{border-bottom:none}.paragraph--type--text table.-responsive:not(.-display-as-list) tbody tr:nth-child(2n) td{border-top:1px solid #D8D8D8;border-bottom:1px solid #D8D8D8}a.arrow-right,.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_column_content p a{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15;color:#B32B23;position:relative;overflow-x:visible !important;text-decoration:none}@media only screen and (max-width: 767px){a.arrow-right,.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_column_content p a{font-size:calc(var(--font-size-base) * 1 * .8)}}a.arrow-right:after,.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_column_content p a:after{content:'';display:block;position:absolute;top:50%;-webkit-transform:translateY(-35%) rotate(0deg);transform:translateY(-35%) rotate(0deg);right:-1.1em;transition:all .25s linear;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--red.svg) no-repeat center;background-size:contain;width:.8em;height:.8em}a.arrow-right:hover:after,.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_column_content p a:hover:after{right:-1.4em}img.fullwidth{width:100%}strong{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15;font-size:20px}@media only screen and (max-width: 767px){strong{font-size:calc(var(--font-size-base) * 1 * .8)}}@media (min-width: 320px) and (max-width: 1399px){strong{font-size:23px;font-size:calc(20px + (26 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){strong{font-size:26px}}.color-red{color:#B32B23}.slider{width:100%;display:block !important}.slider>*:not([class*="slider__"]){display:none !important}.slider--mode-slide{overflow:hidden}.slider--mode-fade .slider__item{transition-property:opacity;transition-timing-function:linear}.slider--mode-fade .slider__item:first-of-type{position:relative;z-index:2}.slider--mode-fade .slider__item:not(:first-of-type){position:absolute;z-index:1;left:0;top:0;width:100%;height:100%}.slider img{max-width:100%}.slider--hold-transition .slider__wrapper{transition:none !important}.slider--mode-slide .slider__wrapper{display:flex;flex-wrap:nowrap;width:10000%;will-change:transform}.slider__navigation{list-style:none;padding:0}.slider__navigation>li{display:inline-block;cursor:pointer}.slider__control{transition:all .25s linear;cursor:pointer}.slider__control--disabled{opacity:0;cursor:default;pointer-events:none}.slider__autoplay-indicator{position:relative;height:5px}.slider__autoplay-indicator:before{content:'';position:absolute;top:0;left:0;height:100%;width:100%;background:var(--color-primary);-webkit-animation-duration:var(--d);animation-duration:var(--d);-webkit-animation-name:autoplay-indicator;animation-name:autoplay-indicator;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-transform-origin:left center;transform-origin:left center}.slider__autoplay-indicator--hold:before{-webkit-animation:none;animation:none;-webkit-transform:scaleX(0);transform:scaleX(0)}@-webkit-keyframes autoplay-indicator{from{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes autoplay-indicator{from{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.layout-container{background-color:#fff}#contact{position:fixed;z-index:10;width:550px;max-height:calc(100% - calc(var(--grid-size)  * 2));background:white;border-radius:var(--font-size-base);opacity:1;transition:opacity .25s ease-in-out, -webkit-transform .5s ease-in-out;transition:opacity .25s ease-in-out, transform .5s ease-in-out;transition:opacity .25s ease-in-out, transform .5s ease-in-out, -webkit-transform .5s ease-in-out}@media only screen and (min-width: 570px){#contact{top:var(--grid-size);right:var(--grid-size);max-width:calc(100% - calc(var(--grid-size)  * 2));padding:var(--grid-size);box-shadow:0 0 15px rgba(0,0,0,0.15)}}@media only screen and (max-width: 569px){#contact{top:calc(var(--grid-size) / 2);right:calc(var(--grid-size) / 2);max-width:calc(100% - calc(var(--grid-size)));padding:calc(var(--grid-size) / 1.5);box-shadow:0 0 150px rgba(0,0,0,0.5)}}#contact:not(.show){opacity:0;visibility:hidden;-webkit-transform:translateX(calc(100% + var(--grid-size)));transform:translateX(calc(100% + var(--grid-size)))}#contact>button{position:absolute;border:none;font-size:0px;color:transparent;width:12px;height:12px;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/close--black.svg) no-repeat center;background-size:100% auto}@media only screen and (min-width: 570px){#contact>button{top:calc(var(--grid-size) + 10px);right:var(--grid-size)}}@media only screen and (max-width: 569px){#contact>button{top:calc(var(--grid-size) - 5px);right:calc(var(--grid-size) / 1.5)}}#contact>div:not(:first-of-type){border-top:dotted 1px #D8D8D8;padding-top:var(--grid-size);margin-top:var(--grid-size)}#contact>div:first-of-type svg{fill:#D8D8D8}#contact>div:nth-of-type(2) a b,#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--seal .field_download a,.paragraph--type--seal .field_download #contact>div:nth-of-type(2) a a,#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--newsletter-registration .nl2go button[type="submit"],.paragraph--type--newsletter-registration .nl2go #contact>div:nth-of-type(2) a button[type="submit"]{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px}@media (min-width: 320px) and (max-width: 1399px){#contact>div:nth-of-type(2) a b,#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--seal .field_download a,.paragraph--type--seal .field_download #contact>div:nth-of-type(2) a a,#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--newsletter-registration .nl2go button[type="submit"],.paragraph--type--newsletter-registration .nl2go #contact>div:nth-of-type(2) a button[type="submit"]{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){#contact>div:nth-of-type(2) a b,#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href$=".pdf"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href$=".pdf"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href$=".pdf"],#contact>div:nth-of-type(2) a .paragraph--type--seal .field_download a,.paragraph--type--seal .field_download #contact>div:nth-of-type(2) a a,#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="/"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="//"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="//"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="//"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="//"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="http://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="https://"]:not([href$=".pdf"]),#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="tel:"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="tel:"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="tel:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_link a[href^="mailto:"],.paragraph--type--teaser .field_link #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--teaser .field_second_link a[href^="mailto:"],.paragraph--type--teaser .field_second_link #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--curved-teaser .fields_link_download a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download #contact>div:nth-of-type(2) a a[href^="mailto:"],#contact>div:nth-of-type(2) a .paragraph--type--newsletter-registration .nl2go button[type="submit"],.paragraph--type--newsletter-registration .nl2go #contact>div:nth-of-type(2) a button[type="submit"]{font-size:20px}}#contact>div>b,.paragraph--type--teaser .field_link #contact>div>a[href$=".pdf"],.paragraph--type--teaser .field_second_link #contact>div>a[href$=".pdf"],.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href$=".pdf"],.paragraph--type--seal .field_download #contact>div>a,.paragraph--type--teaser .field_link #contact>div>a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div>a[href^="/"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href^="/"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div>a[href^="//"],.paragraph--type--teaser .field_second_link #contact>div>a[href^="//"],.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href^="//"],.paragraph--type--teaser .field_link #contact>div>a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div>a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href^="http://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div>a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_second_link #contact>div>a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href^="https://"]:not([href$=".pdf"]),.paragraph--type--teaser .field_link #contact>div>a[href^="tel:"],.paragraph--type--teaser .field_second_link #contact>div>a[href^="tel:"],.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href^="tel:"],.paragraph--type--teaser .field_link #contact>div>a[href^="mailto:"],.paragraph--type--teaser .field_second_link #contact>div>a[href^="mailto:"],.paragraph--type--curved-teaser .fields_link_download #contact>div>a[href^="mailto:"],.paragraph--type--newsletter-registration .nl2go #contact>div>button[type="submit"]{display:block;margin-bottom:var(--grid-size)}#contact>div a{color:inherit;text-decoration:none;display:block}#contact>div a span{background-color:#B32B23}#contact>div a span svg{fill:white}#header{top:-100px;position:relative;z-index:9;box-shadow:0 0 40px -50px rgba(33,33,33,0.1);transition:box-shadow 200ms ease-out, top 200ms ease-out}body.scrolled.scroll-direction-up #header,body:not(.scrolled) #header{position:-webkit-sticky;position:sticky;box-shadow:none;top:0}@media only screen and (min-width: 768px){#header{position:-webkit-sticky;position:sticky;top:0}}body.scrolled #header{box-shadow:0 0 40px -10px rgba(33,33,33,0.1)}#header+div{display:none}#header__inner{display:flex;justify-content:space-between;background:white;align-items:center;height:110px}@media only screen and (min-width: 768px){#header__inner{padding:calc(var(--grid-size) * .35) var(--grid-size) 0}}@media only screen and (max-width: 767px){#header__inner{padding:calc(var(--grid-size)  * .5) 5vw calc(var(--grid-size)  * .5)}}#header__inner>div>div{display:flex;justify-content:flex-end;align-items:center}#header__inner>div>div>a svg{fill:#B32B23}#header__inner>div>div>a>span{border:solid 2px #B32B23}@media only screen and (max-width: 767px){#header__inner>div>div>a{display:none}}#header__inner>div>div>button:not(#header__burger){margin-left:var(--grid-size);margin-top:-5px}@media only screen and (max-width: 767px){#header__inner>div>div>button:not(#header__burger){position:fixed;right:0;top:50%;height:50px;width:50px;background:#fff url(/themes/frankfurter_verband_theme/dist/fonts/phone.svg) no-repeat center;background-size:24px auto;border-radius:50px 0 0 50px;padding:0;overflow:hidden;text-indent:1000em;color:transparent;box-shadow:0 0 50px rgba(38,38,38,0.25);-webkit-transform:translateY(-100%) !important;transform:translateY(-100%) !important;margin-top:0;display:none}}#header__inner .header__left{display:flex;flex-direction:row;gap:var(--grid-size);justify-content:center;flex-grow:1}#header__curve{display:block;width:100%;height:auto}#header__menu{flex-grow:1;display:flex;justify-content:center}@media only screen and (max-width: 1298px){#header__menu{justify-content:flex-end}}#header__burger{position:relative;width:28px;height:18px;border:none;background:none;cursor:pointer}@media only screen and (min-width: 1024px){#header__burger{display:none}}@media only screen and (max-width: 1023px){#header__burger{display:block}}@media only screen and (min-width: 768px) and (max-width: 1023px){#header__burger{margin-left:var(--grid-size)}}#header__burger .line{display:block;background:#262626;width:28px;height:4px;position:absolute;left:0;border-radius:2px;transition:all .4s;-webkit-transition:all .4s;-moz-transition:all .4s}#header__burger .line.line-1{top:0}#header__burger .line.line-2{top:50%}#header__burger .line.line-3{top:100%}#header__burger:hover .line-1,#header__burger:focus .line-1{transform:translateY(-2px);-webkit-transform:translateY(-2px);-moz-transform:translateY(-2px)}#header__burger:hover .line-3,#header__burger:focus .line-3{transform:translateY(2px);-webkit-transform:translateY(2px);-moz-transform:translateY(2px)}#header__burger.-is-open .line-1{transform:translateY(9px) translateX(0) rotate(45deg);-webkit-transform:translateY(9px) translateX(0) rotate(45deg);-moz-transform:translateY(9px) translateX(0) rotate(45deg)}#header__burger.-is-open .line-2{opacity:0}#header__burger.-is-open .line-3{transform:translateY(-9px) translateX(0) rotate(-45deg);-webkit-transform:translateY(-9px) translateX(0) rotate(-45deg);-moz-transform:translateY(-9px) translateX(0) rotate(-45deg)}#header #logo--top{height:65px}main{position:relative;z-index:1;min-height:100vh;background-color:white;overflow:hidden}#footer{background-color:white;padding-top:calc(var(--grid-size)*2.5);background:#D8D8D8}@media only screen and (min-width: 550px){#footer .container{display:flex;justify-content:space-between;flex-wrap:wrap}}#footer .container h4{color:#B32B23}#footer .container>div{padding:var(--grid-size) var(--grid-size) 0}#footer .container>.footer__section{margin-top:0}#footer .container>.footer__section a{color:initial}#footer .container>.footer__section p,#footer .container>.footer__section li{line-height:2.25}@media only screen and (min-width: 1100px){#footer .container>.footer__section.footer__certificates{width:40%}#footer .container>.footer__section.footer__contact{width:30%}#footer .container>.footer__section.footer__menu{width:30%}}@media only screen and (min-width: 768px) and (max-width: 1099px){#footer .container>.footer__section.footer__menu,#footer .container>.footer__section.footer__contact{width:50%}#footer .container>.footer__section.footer__certificates{width:100%}}#footer .container>.footer__section.footer__menu h4{visibility:hidden}#footer .container>.footer__section.footer__certificates{display:flex;flex-wrap:wrap}#footer .container>.footer__section.footer__certificates>h4{flex:1 0 100%}#footer .container>.footer__section.footer__certificates>div{display:flex;flex-wrap:wrap;justify-content:space-around;align-items:center}@media only screen and (min-width: 768px){#footer .container>.footer__section.footer__certificates>div{position:relative;top:0}}#footer .container>.footer__section.footer__certificates figure{display:flex;justify-content:center;align-items:center;margin-bottom:calc(var(--grid-size) * .5)}#footer .container>.footer__section.footer__certificates figure:not(:last-of-type){margin-right:calc(var(--grid-size) * .5)}#footer .container>.footer__section.footer__certificates figure:nth-child(4) img{width:193px;height:38px}#footer .container>.footer__section.footer__certificates figure:nth-child(5) img{width:200px;height:112px}#footer .container #footer__legal{width:100%;justify-content:space-between;padding-bottom:var(--grid-size) !important}@media only screen and (min-width: 850px){#footer .container #footer__legal{display:flex}}@media only screen and (max-width: 849px){#footer .container #footer__legal{margin-top:calc(var(--grid-size))}}#footer .container #footer__legal .divider{color:transparent}#footer .container #footer__legal span,#footer .container #footer__legal a{display:block;color:rgba(123,123,123,0.5);line-height:1}@media only screen and (max-width: 849px){#footer .container #footer__legal a{margin-bottom:10px}}@media only screen and (min-width: 768px){#footer .container h4{height:60px}}@media only screen and (max-width: 767px){#footer .container h4{margin-bottom:2.5vw}}#footer .container a{text-decoration:none}#footer .container a:hover{color:#7B7B7B}#footer .container #footer__social{display:flex;margin-top:calc(var(--grid-size) * .5)}#footer .container #footer__social li:not(:last-of-type){margin-right:calc(var(--grid-size) * .25)}#footer .container #footer__social li svg{width:50px;height:50px}#footer .container #footer__social li svg circle{fill:none;stroke-width:3px}#footer .container #footer__social li svg path{stroke:none}#footer .container #footer__social li a[href*="facebook"] svg path{fill:#3b5998;fill:#B32B23}#footer .container #footer__social li a[href*="facebook"] svg circle{stroke:#3b5998;stroke:#B32B23}#footer .container #footer__social li a[href*="twitter"] svg path{fill:#1DA1F2;fill:#B32B23}#footer .container #footer__social li a[href*="twitter"] svg circle{stroke:#1DA1F2;stroke:#B32B23}#footer .container #footer__social li a[href*="youtube"] svg path{fill:red;fill:#B32B23}#footer .container #footer__social li a[href*="youtube"] svg circle{stroke:red;stroke:#B32B23}#footer .container #footer__social li a[href*="instagram"] svg path{fill:red;fill:#B32B23 !important}#footer .container #logo--bottom{margin-bottom:10px;position:absolute;top:55px}#user-login-form,#user-pass{display:flex;flex-direction:column;justify-content:center;align-items:center}#user-login-form .js-form-item,#user-login-form .link-to-password-reset-page,#user-login-form input[type="submit"],#user-pass .js-form-item,#user-pass .link-to-password-reset-page,#user-pass input[type="submit"]{margin-top:20px}#user-login-form input[type="submit"],#user-pass input[type="submit"]{padding-left:20px;padding-right:20px}#user-login-form .link-to-password-reset-page,#user-pass .link-to-password-reset-page{max-width:500px}#back-to-top{position:fixed;z-index:8;cursor:pointer;transition:opacity .5s ease-out, -webkit-transform .25s linear;transition:opacity .5s ease-out, transform .25s linear;transition:opacity .5s ease-out, transform .25s linear, -webkit-transform .25s linear;opacity:0}@media only screen and (min-width: 768px){#back-to-top{width:50px;height:50px;right:calc((100vw - 1440px) / 2 + var(--grid-size));bottom:calc(var(--grid-size) * 2);border:solid 3px #262626;border-radius:50px}}@media only screen and (max-width: 1439px){#back-to-top{bottom:calc(var(--grid-size) / 2);right:calc(var(--grid-size) / 2)}}@media only screen and (max-width: 1549px){#back-to-top{background-color:rgba(216,216,216,0.5)}}@media only screen and (max-width: 767px){#back-to-top{right:0;bottom:0;background-color:#fff;border-radius:25px 0 0 0;width:50px;height:50px;border:none;box-shadow:0 0 50px rgba(38,38,38,0.25)}}#back-to-top.-is-active{opacity:1}#back-to-top:not(.-is-active){pointer-events:none}#back-to-top svg{width:25px;height:auto;margin-top:4px}#back-to-top svg line{stroke-width:3px;stroke:#262626;stroke-linecap:round}/*!
 * Bootstrap Grid v5.0.0-beta1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x, 0.75rem);padding-left:var(--bs-gutter-x, 0.75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width: 992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width: 1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width: 1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:-ms-grid !important;display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{-ms-grid-row-align:center !important;align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:0.25rem !important}.m-2{margin:0.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:0.25rem !important;margin-left:0.25rem !important}.mx-2{margin-right:0.5rem !important;margin-left:0.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.my-2{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:0.25rem !important}.mt-2{margin-top:0.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:0.25rem !important}.me-2{margin-right:0.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:0.25rem !important}.mb-2{margin-bottom:0.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:0.25rem !important}.ms-2{margin-left:0.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:0.25rem !important}.p-2{padding:0.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:0.25rem !important;padding-left:0.25rem !important}.px-2{padding-right:0.5rem !important;padding-left:0.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.py-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:0.25rem !important}.pt-2{padding-top:0.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:0.25rem !important}.pe-2{padding-right:0.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:0.25rem !important}.pb-2{padding-bottom:0.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:0.25rem !important}.ps-2{padding-left:0.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}@media (min-width: 576px){.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:-ms-grid !important;display:grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{-ms-grid-row-align:center !important;align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:0.25rem !important}.m-sm-2{margin:0.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:0.25rem !important;margin-left:0.25rem !important}.mx-sm-2{margin-right:0.5rem !important;margin-left:0.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.my-sm-2{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:0.25rem !important}.mt-sm-2{margin-top:0.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:0.25rem !important}.me-sm-2{margin-right:0.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:0.25rem !important}.mb-sm-2{margin-bottom:0.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:0.25rem !important}.ms-sm-2{margin-left:0.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:0.25rem !important}.p-sm-2{padding:0.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:0.25rem !important;padding-left:0.25rem !important}.px-sm-2{padding-right:0.5rem !important;padding-left:0.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.py-sm-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:0.25rem !important}.pt-sm-2{padding-top:0.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:0.25rem !important}.pe-sm-2{padding-right:0.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:0.25rem !important}.pb-sm-2{padding-bottom:0.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:0.25rem !important}.ps-sm-2{padding-left:0.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}}@media (min-width: 768px){.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:-ms-grid !important;display:grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{-ms-grid-row-align:center !important;align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:0.25rem !important}.m-md-2{margin:0.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:0.25rem !important;margin-left:0.25rem !important}.mx-md-2{margin-right:0.5rem !important;margin-left:0.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.my-md-2{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:0.25rem !important}.mt-md-2{margin-top:0.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:0.25rem !important}.me-md-2{margin-right:0.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:0.25rem !important}.mb-md-2{margin-bottom:0.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:0.25rem !important}.ms-md-2{margin-left:0.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:0.25rem !important}.p-md-2{padding:0.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:0.25rem !important;padding-left:0.25rem !important}.px-md-2{padding-right:0.5rem !important;padding-left:0.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.py-md-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:0.25rem !important}.pt-md-2{padding-top:0.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:0.25rem !important}.pe-md-2{padding-right:0.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:0.25rem !important}.pb-md-2{padding-bottom:0.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:0.25rem !important}.ps-md-2{padding-left:0.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}}@media (min-width: 992px){.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:-ms-grid !important;display:grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{-ms-grid-row-align:center !important;align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:0.25rem !important}.m-lg-2{margin:0.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:0.25rem !important;margin-left:0.25rem !important}.mx-lg-2{margin-right:0.5rem !important;margin-left:0.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.my-lg-2{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:0.25rem !important}.mt-lg-2{margin-top:0.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:0.25rem !important}.me-lg-2{margin-right:0.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:0.25rem !important}.mb-lg-2{margin-bottom:0.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:0.25rem !important}.ms-lg-2{margin-left:0.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:0.25rem !important}.p-lg-2{padding:0.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:0.25rem !important;padding-left:0.25rem !important}.px-lg-2{padding-right:0.5rem !important;padding-left:0.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.py-lg-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:0.25rem !important}.pt-lg-2{padding-top:0.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:0.25rem !important}.pe-lg-2{padding-right:0.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:0.25rem !important}.pb-lg-2{padding-bottom:0.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:0.25rem !important}.ps-lg-2{padding-left:0.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}}@media (min-width: 1200px){.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:-ms-grid !important;display:grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{-ms-grid-row-align:center !important;align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:0.25rem !important}.m-xl-2{margin:0.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:0.25rem !important;margin-left:0.25rem !important}.mx-xl-2{margin-right:0.5rem !important;margin-left:0.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.my-xl-2{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:0.25rem !important}.mt-xl-2{margin-top:0.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:0.25rem !important}.me-xl-2{margin-right:0.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:0.25rem !important}.mb-xl-2{margin-bottom:0.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:0.25rem !important}.ms-xl-2{margin-left:0.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:0.25rem !important}.p-xl-2{padding:0.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:0.25rem !important;padding-left:0.25rem !important}.px-xl-2{padding-right:0.5rem !important;padding-left:0.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.py-xl-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:0.25rem !important}.pt-xl-2{padding-top:0.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:0.25rem !important}.pe-xl-2{padding-right:0.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:0.25rem !important}.pb-xl-2{padding-bottom:0.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:0.25rem !important}.ps-xl-2{padding-left:0.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}}@media (min-width: 1400px){.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:-ms-grid !important;display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{-ms-grid-row-align:auto !important;align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{-ms-grid-row-align:center !important;align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{-ms-grid-row-align:stretch !important;align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:0.25rem !important}.m-xxl-2{margin:0.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:0.25rem !important;margin-left:0.25rem !important}.mx-xxl-2{margin-right:0.5rem !important;margin-left:0.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.my-xxl-2{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:0.25rem !important}.mt-xxl-2{margin-top:0.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:0.25rem !important}.me-xxl-2{margin-right:0.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:0.25rem !important}.mb-xxl-2{margin-bottom:0.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:0.25rem !important}.ms-xxl-2{margin-left:0.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:0.25rem !important}.p-xxl-2{padding:0.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:0.25rem !important;padding-left:0.25rem !important}.px-xxl-2{padding-right:0.5rem !important;padding-left:0.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.py-xxl-2{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:0.25rem !important}.pt-xxl-2{padding-top:0.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:0.25rem !important}.pe-xxl-2{padding-right:0.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:0.25rem !important}.pb-xxl-2{padding-bottom:0.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:0.25rem !important}.ps-xxl-2{padding-left:0.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:-ms-grid !important;display:grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.breadcrumbs{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;overflow-x:hidden;display:flex;position:relative;z-index:1}@media (min-width: 320px) and (max-width: 1399px){.breadcrumbs{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.breadcrumbs{font-size:20px}}@media only screen and (max-width: 767px){.breadcrumbs{margin-left:calc(var(--grid-size) * .5);margin-right:calc(var(--grid-size) * .5)}}.breadcrumbs span{cursor:default}@media only screen and (max-width: 767px){.breadcrumbs span:last-child{white-space:nowrap;display:inline-block;overflow:hidden;text-overflow:ellipsis}}.breadcrumbs a,.breadcrumbs span{text-decoration:none;color:#262626;margin:2rem 0;white-space:nowrap}.breadcrumbs a:not(:first-child):before,.breadcrumbs span:not(:first-child):before{content:'';display:inline-block;vertical-align:middle;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow-breadcrumbs.svg) no-repeat center;background-size:auto 24px;height:24px;width:24px;position:relative;top:-1px;margin:0 1rem}.breadcrumbs a:not(:last-child),.breadcrumbs span:not(:last-child){color:#979797;transition:color 200ms ease-out}.breadcrumbs a:not(:last-child):before,.breadcrumbs span:not(:last-child):before{background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow-breadcrumbs--gray.svg) no-repeat center}.breadcrumbs a:not(:last-child):hover,.breadcrumbs span:not(:last-child):hover{color:#262626}.breadcrumbs a:not(:last-child):hover:before,.breadcrumbs span:not(:last-child):hover:before{background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow-breadcrumbs.svg) no-repeat center}@media only screen and (max-width: 767px){.breadcrumbs a:not(:last-child):not([onclick]),.breadcrumbs span:not(:last-child):not([onclick]){display:none}}@media only screen and (min-width: 768px){.breadcrumbs a[onclick="javascript:history.back();"],.breadcrumbs span[onclick="javascript:history.back();"]{display:none}}@media only screen and (min-width: 768px){.breadcrumbs a:nth-child(2):before,.breadcrumbs span:nth-child(2):before{display:none}}@media only screen and (min-width: 768px){#block-frankfurter-verband-theme-content .paragraph--type--hero-image+.breadcrumbs{margin-top:-78px;margin-left:calc(var(--grid-size)  * 6);margin-bottom:78px}}#main-menu{overflow:hidden}#main-menu__on-page{display:flex;padding-right:30px}#main-menu__on-page svg{display:none}#main-menu__on-page .menu{position:relative;top:-6px}@media only screen and (min-width: 1024px){#main-menu__on-page .menu{display:flex}}@media only screen and (max-width: 1023px){#main-menu__on-page .menu{display:none}}#main-menu__on-page .menu.menu--level-1{gap:45px}@media only screen and (max-width: 1199px){#main-menu__on-page .menu.menu--level-1{gap:30px}}#main-menu__on-page .menu__item:not(:first-of-type){margin-left:calc(var(--grid-size))}@media only screen and (max-width: 1199px){#main-menu__on-page .menu__item:not(:first-of-type){margin-left:calc(var(--grid-size) * .5)}}#main-menu__on-page .menu__item a{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.4);line-height:1.15;line-height:1.5;position:relative;color:#B32B23;padding-bottom:4px;text-decoration:none}@media only screen and (max-width: 767px){#main-menu__on-page .menu__item a{font-size:calc(var(--font-size-base) * 1.4 * .8)}}@media only screen and (max-width: 1099px){#main-menu__on-page .menu__item a{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.2);line-height:1.15}}@media only screen and (max-width: 1099px) and (max-width: 767px){#main-menu__on-page .menu__item a{font-size:calc(var(--font-size-base) * 1.2 * .8)}}#main-menu__on-page .menu__item a:after{content:'';display:block;position:absolute;top:50%;-webkit-transform:translateY(-50%) rotate(0deg);transform:translateY(-50%) rotate(0deg);right:-15px;opacity:0;transition:all .25s linear;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--red.svg) no-repeat center;background-size:contain;width:20px;height:20px}#main-menu__on-page .menu__item--active-trail a:after,#main-menu__on-page .menu__item:hover a:after{opacity:1;right:-27px}#main-menu__on-page .menu__item--has-submenu:hover a:after,#main-menu__on-page .menu__item--active-trail.menu__item--has-submenu a:after{-webkit-transform:translateY(-50%) rotate(90deg);transform:translateY(-50%) rotate(90deg)}#main-menu__off-page{background:#F5F3ED;width:1440px;height:calc(100vh - 100px);opacity:0;display:none;transition:opacity .35s ease-out;overflow:hidden}#main-menu__off-page .main-menu__off-page-wrapper{display:flex;flex-direction:row;gap:25px;overflow-y:auto;overflow-x:hidden;max-height:calc(100vh - 210px)}@media only screen and (max-width: 1298px){#main-menu__off-page .main-menu__off-page-wrapper{flex-wrap:wrap}}@media only screen and (max-width: 767px){#main-menu__off-page .main-menu__off-page-wrapper{gap:0}}#main-menu__off-page .menu.menu--level-3 a{font-size:18px;margin-bottom:15px}#main-menu__off-page .menu.menu--level-4{margin:20px 0 10px}@media only screen and (max-width: 767px){#main-menu__off-page .menu.menu--level-4{box-shadow:0 0 25px 0 rgba(38,38,38,0.2)}}#main-menu__off-page>div{padding-top:100px}#main-menu__off-page>div>div{position:relative;padding:25px;flex-grow:1}#main-menu__off-page>div>div.main-menu-container{padding-bottom:30px}@media only screen and (max-width: 1298px){#main-menu__off-page>div>div.main-menu-container{order:1;width:100%;padding-bottom:0}}#main-menu__off-page>div>div.main-menu-ctas{flex:0 0 25%}@media only screen and (max-width: 1298px){#main-menu__off-page>div>div.main-menu-ctas{order:2;width:calc(100% - 60px);display:flex;flex-direction:row;flex-wrap:nowrap;gap:25px;flex:0 0 33.333333%}}@media only screen and (max-width: 1023px){#main-menu__off-page>div>div.main-menu-ctas{flex:0 0 50%}}@media only screen and (max-width: 767px){#main-menu__off-page>div>div.main-menu-ctas{flex-wrap:wrap;padding:30px 0 0;margin:0 30px;gap:0}#main-menu__off-page>div>div.main-menu-ctas:before{content:"......................................................................................";color:#979797;letter-spacing:4px;width:100%;overflow:hidden;position:relative;top:-30px}}#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta{background-color:#ffffff;box-shadow:0 0 25px 0 rgba(38,38,38,0.2);margin-bottom:30px;border-radius:30px;padding:13px 13px 40px;position:relative;flex-grow:1}#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta:after{content:'';display:block;position:absolute;bottom:-7.5px;-webkit-transform:translateY(-50%) rotate(0deg);transform:translateY(-50%) rotate(0deg);right:13px;transition:all .25s linear;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg) no-repeat center;background-size:13px;background-position:16px center;width:38px;height:38px;border-radius:100%;border:2px solid #262626}#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta h3,#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta h4{color:#B32B23;padding:0 50px 0 5px}#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta img{width:100%;border-radius:calc(var(--font-size-base))}@media only screen and (max-width: 1298px){#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta{flex:1 1 50%}}@media only screen and (max-width: 767px){#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta{width:100%;padding:15px;flex:1 1 100%}#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta img{display:none}#main-menu__off-page>div>div.main-menu-ctas .main-menu-ctas-cta:after{bottom:auto;top:50%;-webkit-transform:rotateY(-50%);transform:rotateY(-50%)}}@media only screen and (min-width: 768px){#main-menu__off-page{position:absolute;left:0;top:100%}body.toolbar-tray-open.toolbar-horizontal #main-menu__off-page{height:calc(100vh - 100px - 48px)}#main-menu__off-page .main-menu__off-page-shaddow{-webkit-filter:drop-shadow(0 0 15px rgba(38,38,38,0.2));filter:drop-shadow(0 0 15px rgba(38,38,38,0.2));position:relative;z-index:10;padding-top:0}#main-menu__off-page .main-menu__off-page-shaddow-inner{background-color:white;content:'';display:block;position:absolute;z-index:1;height:100px;width:calc(100% + 2px);left:0;top:-1px;-webkit-clip-path:url(#curve--bottom);clip-path:url(#curve--bottom);z-index:10}}@media only screen and (max-width: 767px){#main-menu__off-page>div>div{margin-top:calc(var(--grid-size) * -1)}}@media only screen and (max-width: 767px){#main-menu__off-page{position:fixed;z-index:10;left:0;width:100%;top:110px}#main-menu__off-page:before{background-color:white;content:'';display:block;position:absolute;z-index:1;height:50px;width:200%;left:0;top:-1px;-webkit-clip-path:url(#curve--bottom);clip-path:url(#curve--bottom);z-index:10}}@media only screen and (max-width: 1679px){#main-menu__off-page{width:100vw}}#main-menu__off-page .menu{position:relative;z-index:2;-webkit-transform:translateX(0);transform:translateX(0);transition:opacity .5s linear, -webkit-transform .25s linear;transition:transform .25s linear, opacity .5s linear;transition:transform .25s linear, opacity .5s linear, -webkit-transform .25s linear;top:0;display:flex;flex-direction:row}@media only screen and (max-width: 767px){#main-menu__off-page .menu{flex-direction:column}}#main-menu__off-page .menu.menu--level-3.showOnMobile:not(.menu--level-4) .menu__item--active-trail.has-children>a:not([href^="/"]):not([href^="http"]){color:#B32B23}@media only screen and (max-width: 767px){#main-menu__off-page .menu.menu--level-3.showOnMobile:not(.menu--level-4){margin-top:15px}}#main-menu__off-page .menu.menu--level-3,#main-menu__off-page .menu.menu--level-4{flex-direction:column}#main-menu__off-page .menu.menu--level-3>li.menu__item>a[href^="/"],#main-menu__off-page .menu.menu--level-3>li.menu__item>a[href^="http"],#main-menu__off-page .menu.menu--level-4>li.menu__item>a[href^="/"],#main-menu__off-page .menu.menu--level-4>li.menu__item>a[href^="http"]{position:relative;display:inline-block;padding-right:calc(var(--grid-size) / 3)}#main-menu__off-page .menu.menu--level-3>li.menu__item>a[href^="/"]:after,#main-menu__off-page .menu.menu--level-3>li.menu__item>a[href^="http"]:after,#main-menu__off-page .menu.menu--level-4>li.menu__item>a[href^="/"]:after,#main-menu__off-page .menu.menu--level-4>li.menu__item>a[href^="http"]:after{content:'';display:block;position:absolute;top:50%;right:0;-webkit-transform:translateY(-45%) translateX(0%);transform:translateY(-45%) translateX(0%);transition:all .25s linear;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--red.svg) no-repeat center;width:15px;height:15px;transition:all .2s ease-out;opacity:0}#main-menu__off-page .menu.menu--level-3>li.menu__item>a[href^="/"]:hover:after,#main-menu__off-page .menu.menu--level-3>li.menu__item>a[href^="http"]:hover:after,#main-menu__off-page .menu.menu--level-4>li.menu__item>a[href^="/"]:hover:after,#main-menu__off-page .menu.menu--level-4>li.menu__item>a[href^="http"]:hover:after{-webkit-transform:translateY(-45%) translateX(40%);transform:translateY(-45%) translateX(40%);opacity:1}#main-menu__off-page .menu.menu--level-3>li.menu__item.menu__item--active-trail>a[href^="/"]:after,#main-menu__off-page .menu.menu--level-3>li.menu__item.menu__item--active-trail>a[href^="http"]:after,#main-menu__off-page .menu.menu--level-4>li.menu__item.menu__item--active-trail>a[href^="/"]:after,#main-menu__off-page .menu.menu--level-4>li.menu__item.menu__item--active-trail>a[href^="http"]:after{-webkit-transform:translateY(-45%) translateX(40%);transform:translateY(-45%) translateX(40%);opacity:1}#main-menu__off-page .menu.menu--level-2>.menu__item{margin-top:0;flex-grow:1}@media only screen and (max-width: 767px){#main-menu__off-page .menu.menu--level-2>.menu__item{margin-bottom:10px;margin-left:30px}}@media only screen and (min-width: 1024px){#main-menu__off-page .menu{width:100%}}#main-menu__off-page .menu--visible{opacity:1;z-index:10}#main-menu__off-page .menu__item{transition:opacity .5s linear}ul * #main-menu__off-page .menu__item{margin-top:0}#main-menu__off-page .menu__item:not(.menu__item--has-submenu)>a>svg{display:none}#main-menu__off-page .menu__item--has-submenu>a>svg{position:absolute;margin-left:auto;width:40px;height:40px;transition:-webkit-transform .2s ease-out;transition:transform .2s ease-out;transition:transform .2s ease-out, -webkit-transform .2s ease-out;top:50%;margin-top:-20px;right:calc(var(--grid-size) * .5)}@media only screen and (max-width: 767px){#main-menu__off-page .menu__item--has-submenu>a>svg{right:calc(var(--grid-size) * .5)}}#main-menu__off-page .menu__item:hover>a>svg{-webkit-transform:translateX(8px);transform:translateX(8px)}@media only screen and (min-width: 1024px){#main-menu__off-page .menu__item--back button{display:none}}@media only screen and (max-width: 767px){#main-menu__off-page .menu__item--back button{display:block;position:relative;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/back--white.svg) no-repeat 0 center;background-size:24px auto;border:none;font-size:2.2rem !important;text-transform:lowercase;text-decoration:none;color:white;padding-left:34px}}#main-menu__off-page .menu__item a{display:block;position:relative;text-decoration:none;color:#262626;padding-right:calc(1 * var(--grid-size));margin-bottom:5px}#main-menu__off-page .menu__item a:not([href^="/"]):not([href^="http"]){font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.6);line-height:1.15;color:#B32B23;cursor:default;margin-bottom:calc(var(--grid-size) * .5);pointer-events:none}@media only screen and (max-width: 767px){#main-menu__off-page .menu__item a:not([href^="/"]):not([href^="http"]){font-size:calc(var(--font-size-base) * 1.6 * .8)}}@media only screen and (max-width: 767px){#main-menu__off-page .menu__item a{font-size:2.2rem !important;pointer-events:all}}#main-menu__off-page .menu__item--active-trail>a,#main-menu__off-page .menu__item:hover>a{color:#B32B23}#main-menu__close{color:transparent;cursor:pointer;width:25px;height:25px;border:none;z-index:20;-webkit-mask-image:url(/themes/frankfurter_verband_theme/dist/fonts/close--white.svg);mask-image:url(/themes/frankfurter_verband_theme/dist/fonts/close--white.svg);background-color:#262626;background-size:100% auto;transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out, -webkit-transform .25s ease-out;will-change:transform;position:absolute}#main-menu__close:hover{-webkit-transform:scale(0.8);transform:scale(0.8)}@media only screen and (max-width: 1023px){#main-menu__close{display:none}}@media only screen and (min-width: 1024px){#main-menu__close{right:var(--grid-size);top:15px}}@media only screen and (min-width: 1024px){#header__menu .menu.showOnDesktop{display:flex}}@media only screen and (max-width: 767px){#header__menu .menu.showOnDesktop{display:none}}#header__menu .menu.showOnDesktop.menu--level-3:not(.menu--level-4)>li.menu__item>a:not([href^="/"]):not([href^="http"]){font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;color:#B32B23;margin-top:calc(var(--grid-size) * .75);margin-bottom:calc(var(--grid-size) * .2)}@media (min-width: 320px) and (max-width: 1399px){#header__menu .menu.showOnDesktop.menu--level-3:not(.menu--level-4)>li.menu__item>a:not([href^="/"]):not([href^="http"]){font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){#header__menu .menu.showOnDesktop.menu--level-3:not(.menu--level-4)>li.menu__item>a:not([href^="/"]):not([href^="http"]){font-size:20px}}#header__menu .menu.showOnMobile{display:none}#header__menu .menu.showOnMobile.menu--visible{display:flex !important}@media only screen and (max-width: 767px){#header__menu .menu.showOnMobile{display:flex}}#header__menu .menu.showOnMobile .menu__item.has-children>a:first-child{position:relative}#header__menu .menu.showOnMobile .menu__item.has-children>a:first-child:after{content:'';display:block;position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%) rotate(90deg);transform:translateY(-50%) rotate(90deg);transition:all .25s linear;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--red.svg) no-repeat center;width:15px;height:15px;transition:-webkit-transform .2s ease-out;transition:transform .2s ease-out;transition:transform .2s ease-out, -webkit-transform .2s ease-out}#header__menu .menu.showOnMobile .menu__item.has-children>a:first-child.menu--visible:after{-webkit-transform:translateY(-50%) rotate(-90deg);transform:translateY(-50%) rotate(-90deg)}#header__menu .menu.showOnMobile.menu--level-1>li.menu__item>a{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.4);line-height:1.15;color:#B32B23;margin-bottom:calc(var(--grid-size) * .5);pointer-events:all}@media only screen and (max-width: 767px){#header__menu .menu.showOnMobile.menu--level-1>li.menu__item>a{font-size:calc(var(--font-size-base) * 1.4 * .8)}}#header__menu .menu.showOnMobile.menu--level-2>li.menu__item>a{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * .9);line-height:1.15;margin-bottom:calc(var(--grid-size) * .15);pointer-events:all}@media only screen and (max-width: 767px){#header__menu .menu.showOnMobile.menu--level-2>li.menu__item>a{font-size:calc(var(--font-size-base) * .9 * .8)}}#header__menu .menu.showOnMobile.menu--level-3:not(.menu--level-4)>li.menu__item>a:not([href^="/"]):not([href^="http"]){font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;color:#262626;pointer-events:all;margin-bottom:calc(var(--grid-size) * .25)}@media (min-width: 320px) and (max-width: 1399px){#header__menu .menu.showOnMobile.menu--level-3:not(.menu--level-4)>li.menu__item>a:not([href^="/"]):not([href^="http"]){font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){#header__menu .menu.showOnMobile.menu--level-3:not(.menu--level-4)>li.menu__item>a:not([href^="/"]):not([href^="http"]){font-size:20px}}#header__menu .menu.showOnMobile.menu--level-4{margin-left:calc((var(--grid-size) * -1) - 15px);padding-left:calc(var(--grid-size)  + 15px);padding-top:15px;width:100vw}#header__menu .menu.showOnMobile .menu__item a:not([href^="/"]):not([href^="http"])+ul.menu{display:none}.slider__wrapper>.paragraph+.paragraph{margin-top:0}.slider__control{position:absolute;width:50px;height:35px;color:transparent}@media only screen and (min-width: 768px){.slider__control{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-top:calc(var(--grid-size)  * -1.5)}}@media only screen and (max-width: 767px){.slider__control{bottom:0}}.slider__control--previous{background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--red--left.svg) no-repeat 15px center;background-size:contain}.slider__control--next{background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--red.svg) no-repeat 17px center;background-size:contain}@media only screen and (min-width: 1024px){.slider__control--next{right:calc(var(--grid-size)  * 2.5)}}@media only screen and (min-width: 768px) and (max-width: 1023px){.slider__control--next{right:var(--grid-size)}}@media only screen and (max-width: 767px){.slider__control--next{right:5vw}}.slider__navigation{display:flex;align-items:center;justify-content:center;height:40px;margin-top:calc(var(--grid-size)  * 2)}.slider__navigation__item{color:transparent;transition:background-color .25s linear, width .25s linear, height .25s linear, border .25s linear, margin .25s linear;border-radius:35px;margin-right:5px;margin-left:5px;display:block}.slider__navigation__item:not(.slider__navigation__item--current){width:20px;height:20px;border:solid 4px #D8D8D8}.slider__navigation__item.slider__navigation__item--current{border:solid 10px #D8D8D8;width:35px;height:35px}.slider__navigation__item.slider__navigation__item--current{background-color:#B32B23}@media (hover: hover) and (pointer: fine){.slider__navigation__item:hover{background-color:#B32B23}}.fv-overview-page{background-color:#F5F3ED;padding-bottom:4em;padding-top:4em}.fv-overview-page>ul{margin-bottom:2em;margin-left:calc(var(--grid-size) / -2)}.fv-overview-page>ul ul{margin-left:calc(60px - var(--grid-size) / 2)}.fv-overview-page>ul ul ul{margin-left:calc(120px - var(--grid-size) / 2)}.fv-overview-page>ul ul ul ul{margin-left:calc(180px - var(--grid-size) / 2)}.fv-overview-page>ul ul ul ul ul{margin-left:calc(240px - var(--grid-size) / 2)}.fv-overview-page>ul ul ul ul ul ul{margin-left:calc(300px - var(--grid-size) / 2)}.fv-overview-page>ul h2{margin-top:1em;white-space:nowrap}.fv-overview-page>ul h2:before{content:'';display:inline-block;vertical-align:middle;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow-breadcrumbs.svg) no-repeat center;background-size:auto 24px;height:24px;width:24px;position:relative;top:-1px;margin:0 1rem}.fv-overview-page__card{background-color:#fff;border-radius:var(--font-size-base);padding:calc(var(--grid-size) * .5);position:relative;width:200px;min-height:100%;display:flex;flex-direction:column;justify-content:flex-end}@media only screen and (min-width: 450px){.fv-overview-page__card{width:300px}}.fv-overview-page__card a:after{display:block;content:" ";position:absolute;top:0;right:0;bottom:0;left:0;cursor:pointer}.fv-overview-page__card__hero-tagline{display:none;font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15;position:absolute;background:linear-gradient(270deg, #dc602b 0%, #eaa22e 100%);top:0;right:0;width:80px;height:80px;padding:10px;border-radius:50%;color:#fff;text-align:center}@media only screen and (max-width: 767px){.fv-overview-page__card__hero-tagline{font-size:calc(var(--font-size-base) * 1 * .8)}}.fv-overview-page .-has-cards{margin-top:1em;margin-bottom:2em;display:flex;flex-wrap:wrap}.fv-overview-page .-has-cards .-has-cards{flex-direction:row}.fv-overview-page .-has-cards>li{position:relative;margin-bottom:calc((var(--grid-size) / 2));overflow:hidden;max-width:100%;margin-left:calc(var(--grid-size) / 2)}.custom-input{position:relative;border:solid 2px black;border-radius:var(--font-size-base);padding:calc(var(--grid-size) * .25);padding-right:50px}.custom-input--expanded{z-index:10}.custom-input--expanded:after{transition:-webkit-transform 200ms ease-out;transition:transform 200ms ease-out;transition:transform 200ms ease-out, -webkit-transform 200ms ease-out;-webkit-transform:rotate(90deg) scale(-1) !important;transform:rotate(90deg) scale(-1) !important}.custom-input:after{content:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg);position:absolute;right:calc(var(--grid-size) * .5);top:calc(var(--grid-size) * .25);width:14px;-webkit-transform:rotate(90deg) scale(1);transform:rotate(90deg) scale(1);cursor:pointer}.custom-input__label{position:relative;z-index:2;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer}.custom-input__label:focus{border:none;outline:0}.custom-input__option{cursor:pointer;color:#7B7B7B;display:block;line-height:1.05}.custom-input__option+.custom-input__option{padding-top:1.25rem}.custom-input__option:hover,.custom-input__option--selected{color:#262626}.custom-input__options{position:absolute;z-index:1;top:calc(100% - 5px);margin-top:calc(var(--grid-size) * -.25);left:-2px;width:calc(100% + 4px);border:solid 2px black;border-top:none;border-radius:0 0 var(--font-size-base) var(--font-size-base);display:none;padding:calc(var(--grid-size) * .5) calc(var(--grid-size) * .25) calc(var(--grid-size) * .25);background:white;max-height:50vh;overflow-y:auto}.custom-input--expanded .custom-input__options{display:block}.program{position:relative;display:flex;flex-direction:column;border-radius:var(--font-size-base);background-color:#F5F3ED;color:#262626;transition:-webkit-transform 200ms ease-out;transition:transform 200ms ease-out;transition:transform 200ms ease-out, -webkit-transform 200ms ease-out}@media only screen and (min-width: 1330px){.program{width:calc(25% - var(--grid-size))}.program:nth-child(2):last-child,.program:nth-child(2):nth-last-child(2),.program:nth-child(3):last-child{width:calc(50% - var(--grid-size))}.program:nth-child(2):last-child .program__content,.program:nth-child(2):nth-last-child(2) .program__content,.program:nth-child(3):last-child .program__content{min-height:160px}}@media only screen and (min-width: 1024px) and (max-width: 1329px){.program{width:calc(25% - var(--grid-size) / 2)}.program:nth-child(2):last-child,.program:nth-child(2):nth-last-child(2),.program:nth-child(3):last-child{width:calc(50% - var(--grid-size))}.program:nth-child(2):last-child .program__content,.program:nth-child(2):nth-last-child(2) .program__content,.program:nth-child(3):last-child .program__content{min-height:160px}}@media only screen and (min-width: 560px) and (max-width: 1023px){.program{width:calc(50% - var(--grid-size) / 2)}}@media only screen and (max-width: 559px){.program{width:100%}}.program:hover{-webkit-transform:translateY(-10px);transform:translateY(-10px)}.program>a{position:absolute;display:block;top:0;left:0;width:100%;height:100%}.program svg{width:15px;height:15px}.program .svg__wrapper{width:15px;height:15px;box-sizing:content-box;display:inline-flex;border:2px solid #262626;padding:15px;justify-content:center;align-items:center;border-radius:50%}.program__content{border-top-left-radius:var(--font-size-base);border-top-right-radius:var(--font-size-base);background-color:#c10032;color:#fff;padding:calc(var(--grid-size) / 2);-webkit-clip-path:ellipse(76% 76% at 27% 20%);clip-path:ellipse(76% 76% at 27% 20%);height:100%;min-height:320px}.program__content h3{font-size:24px;line-height:1.15;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}@media (min-width: 320px) and (max-width: 1399px){.program__content h3{font-size:27px;font-size:calc(24px + (30 - 24) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.program__content h3{font-size:30px}}.program__content h4{font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px}@media (min-width: 320px) and (max-width: 1399px){.program__content h4{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.program__content h4{font-size:20px}}.program__content h3+h4{padding-top:calc(var(--grid-size) * .25)}.program__date{background-color:#262626;color:#fff;border-radius:1.25em;padding:.25em 1em;display:flex;float:left;max-height:38px}@media only screen and (min-width: 1024px) and (max-width: 1199px){.program__date{padding:.25em .5em}}.program__date+*{clear:both;padding-top:calc(var(--grid-size) * .25)}.program__download{display:flex;padding:calc(var(--grid-size) / 2);margin-top:auto;border-bottom-left-radius:var(--font-size-base);border-bottom-right-radius:var(--font-size-base)}.program__download span{margin-left:1em;line-height:1.25;font-weight:bold}.google-maps__tooltip>h4{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.2);line-height:1.15;margin-bottom:1em;padding-right:40px}@media only screen and (max-width: 767px){.google-maps__tooltip>h4{font-size:calc(var(--font-size-base) * 1.2 * .8)}}.google-maps__tooltip>p{margin-bottom:1em;white-space:pre-wrap;font-size:1.5rem}.google-maps__tooltip>a{margin-top:1em}@media only screen and (min-width: 600px){.google-maps__tooltip>a:after{content:'';display:inline-block;vertical-align:middle;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg) no-repeat center;background-size:auto var(--font-size-base);height:var(--font-size-base);width:24px;position:relative;top:4px;float:right}}.google-maps__tooltip>a:after{top:0}.gm-style .gm-style-iw-c{border-radius:var(--font-size-base);padding:calc(var(--grid-size) * .5)}.gm-style .gm-style-iw-c button.gm-ui-hover-effect[title="Close"]{top:15px !important;right:15px !important;color:transparent;width:25px !important;height:25px !important;border:none;z-index:2;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/close--gray.svg) no-repeat !important;background-size:75% auto !important;opacity:1 !important;transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out, -webkit-transform .25s ease-out;will-change:transform}.gm-style .gm-style-iw-c button.gm-ui-hover-effect[title="Close"]:hover{-webkit-transform:scale(0.8);transform:scale(0.8)}.gm-style .gm-style-iw-c button.gm-ui-hover-effect[title="Close"] img{display:none !important}.datepicker button{text-decoration:none}.datepicker .dow,.datepicker-cell{font-size:inherit;height:auto;padding:.15em 0}.datepicker-controls .button{padding-top:.5em;padding-bottom:.5em}.datepicker-view{width:250px}.paragraph--type--text a.button,.paragraph--type--image-text a.button,.paragraph--type--text-text a.button,.paragraph--type--teaser-fullwidth a.button,.paragraph--type--teaser--left-right a.button,.text-type-formatted a.button,.ck-content a.button{display:inline-block;font-size:24px}.paragraph--type--text a.button.bg-color-red,.paragraph--type--image-text a.button.bg-color-red,.paragraph--type--text-text a.button.bg-color-red,.paragraph--type--teaser-fullwidth a.button.bg-color-red,.paragraph--type--teaser--left-right a.button.bg-color-red,.text-type-formatted a.button.bg-color-red,.ck-content a.button.bg-color-red{background-color:#B32B23;color:#fff}.paragraph--type--text a.button.bg-color-red:hover,.paragraph--type--image-text a.button.bg-color-red:hover,.paragraph--type--text-text a.button.bg-color-red:hover,.paragraph--type--teaser-fullwidth a.button.bg-color-red:hover,.paragraph--type--teaser--left-right a.button.bg-color-red:hover,.text-type-formatted a.button.bg-color-red:hover,.ck-content a.button.bg-color-red:hover{-webkit-transform:translateY(0);transform:translateY(0)}.paragraph--type--text a.button.bg-color-red.arrow-right,.paragraph--type--image-text a.button.bg-color-red.arrow-right,.paragraph--type--text-text a.button.bg-color-red.arrow-right,.paragraph--type--teaser-fullwidth a.button.bg-color-red.arrow-right,.paragraph--type--teaser--left-right a.button.bg-color-red.arrow-right,.text-type-formatted a.button.bg-color-red.arrow-right,.ck-content a.button.bg-color-red.arrow-right{padding-right:2.5em}.paragraph--type--text a.button.bg-color-red.arrow-right:after,.paragraph--type--image-text a.button.bg-color-red.arrow-right:after,.paragraph--type--text-text a.button.bg-color-red.arrow-right:after,.paragraph--type--teaser-fullwidth a.button.bg-color-red.arrow-right:after,.paragraph--type--teaser--left-right a.button.bg-color-red.arrow-right:after,.text-type-formatted a.button.bg-color-red.arrow-right:after,.ck-content a.button.bg-color-red.arrow-right:after{right:1em;color:inherit;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg) no-repeat center;-webkit-transform:translateY(-45%) rotate(0deg);transform:translateY(-45%) rotate(0deg);width:1.3em;height:1.1em}.paragraph--type--text a.button.bg-color-red.arrow-right:hover:after,.paragraph--type--image-text a.button.bg-color-red.arrow-right:hover:after,.paragraph--type--text-text a.button.bg-color-red.arrow-right:hover:after,.paragraph--type--teaser-fullwidth a.button.bg-color-red.arrow-right:hover:after,.paragraph--type--teaser--left-right a.button.bg-color-red.arrow-right:hover:after,.text-type-formatted a.button.bg-color-red.arrow-right:hover:after,.ck-content a.button.bg-color-red.arrow-right:hover:after{right:0.5em}.paragraph--type--text a.button.bg-color-white,.paragraph--type--image-text a.button.bg-color-white,.paragraph--type--text-text a.button.bg-color-white,.paragraph--type--teaser-fullwidth a.button.bg-color-white,.paragraph--type--teaser--left-right a.button.bg-color-white,.text-type-formatted a.button.bg-color-white,.ck-content a.button.bg-color-white{background-color:#ffffff;color:#B32B23}.paragraph--type--text a.button.bg-color-white.color-default,.paragraph--type--image-text a.button.bg-color-white.color-default,.paragraph--type--text-text a.button.bg-color-white.color-default,.paragraph--type--teaser-fullwidth a.button.bg-color-white.color-default,.paragraph--type--teaser--left-right a.button.bg-color-white.color-default,.text-type-formatted a.button.bg-color-white.color-default,.ck-content a.button.bg-color-white.color-default{color:#262626}.paragraph--type--text a.button.bg-color-white:hover,.paragraph--type--image-text a.button.bg-color-white:hover,.paragraph--type--text-text a.button.bg-color-white:hover,.paragraph--type--teaser-fullwidth a.button.bg-color-white:hover,.paragraph--type--teaser--left-right a.button.bg-color-white:hover,.text-type-formatted a.button.bg-color-white:hover,.ck-content a.button.bg-color-white:hover{-webkit-transform:translateY(0);transform:translateY(0)}.paragraph--type--text a.button.bg-color-white.arrow-right,.paragraph--type--image-text a.button.bg-color-white.arrow-right,.paragraph--type--text-text a.button.bg-color-white.arrow-right,.paragraph--type--teaser-fullwidth a.button.bg-color-white.arrow-right,.paragraph--type--teaser--left-right a.button.bg-color-white.arrow-right,.text-type-formatted a.button.bg-color-white.arrow-right,.ck-content a.button.bg-color-white.arrow-right{padding-right:2.5em}.paragraph--type--text a.button.bg-color-white.arrow-right:after,.paragraph--type--image-text a.button.bg-color-white.arrow-right:after,.paragraph--type--text-text a.button.bg-color-white.arrow-right:after,.paragraph--type--teaser-fullwidth a.button.bg-color-white.arrow-right:after,.paragraph--type--teaser--left-right a.button.bg-color-white.arrow-right:after,.text-type-formatted a.button.bg-color-white.arrow-right:after,.ck-content a.button.bg-color-white.arrow-right:after{right:1em;color:inherit;-webkit-transform:translateY(-45%) rotate(0deg);transform:translateY(-45%) rotate(0deg);width:1.3em;height:1.1em}.paragraph--type--text a.button.bg-color-white.arrow-right:hover:after,.paragraph--type--image-text a.button.bg-color-white.arrow-right:hover:after,.paragraph--type--text-text a.button.bg-color-white.arrow-right:hover:after,.paragraph--type--teaser-fullwidth a.button.bg-color-white.arrow-right:hover:after,.paragraph--type--teaser--left-right a.button.bg-color-white.arrow-right:hover:after,.text-type-formatted a.button.bg-color-white.arrow-right:hover:after,.ck-content a.button.bg-color-white.arrow-right:hover:after{right:0.5em}.paragraph--type--text a.button.bg-color-white.arrow-right.color-default:after,.paragraph--type--image-text a.button.bg-color-white.arrow-right.color-default:after,.paragraph--type--text-text a.button.bg-color-white.arrow-right.color-default:after,.paragraph--type--teaser-fullwidth a.button.bg-color-white.arrow-right.color-default:after,.paragraph--type--teaser--left-right a.button.bg-color-white.arrow-right.color-default:after,.text-type-formatted a.button.bg-color-white.arrow-right.color-default:after,.ck-content a.button.bg-color-white.arrow-right.color-default:after{background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--black.svg) no-repeat center}.paragraph--type--text blockquote,.paragraph--type--image-text blockquote,.paragraph--type--text-text blockquote,.paragraph--type--teaser-fullwidth blockquote,.paragraph--type--teaser--left-right blockquote,.text-type-formatted blockquote,.ck-content blockquote{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.8);line-height:1.15;color:#B32B23;border:none;font-style:normal;margin-bottom:30px;padding:0 0 0 30px;position:relative}@media only screen and (max-width: 767px){.paragraph--type--text blockquote,.paragraph--type--image-text blockquote,.paragraph--type--text-text blockquote,.paragraph--type--teaser-fullwidth blockquote,.paragraph--type--teaser--left-right blockquote,.text-type-formatted blockquote,.ck-content blockquote{font-size:calc(var(--font-size-base) * 1.8 * .8)}}@media only screen and (max-width: 767px){.paragraph--type--text blockquote,.paragraph--type--image-text blockquote,.paragraph--type--text-text blockquote,.paragraph--type--teaser-fullwidth blockquote,.paragraph--type--teaser--left-right blockquote,.text-type-formatted blockquote,.ck-content blockquote{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.35);line-height:1.15;line-height:1.3;padding:0 0 0 20px}}@media only screen and (max-width: 767px) and (max-width: 767px){.paragraph--type--text blockquote,.paragraph--type--image-text blockquote,.paragraph--type--text-text blockquote,.paragraph--type--teaser-fullwidth blockquote,.paragraph--type--teaser--left-right blockquote,.text-type-formatted blockquote,.ck-content blockquote{font-size:calc(var(--font-size-base) * 1.35 * .8)}}.paragraph--type--text blockquote p:first-child,.paragraph--type--image-text blockquote p:first-child,.paragraph--type--text-text blockquote p:first-child,.paragraph--type--teaser-fullwidth blockquote p:first-child,.paragraph--type--teaser--left-right blockquote p:first-child,.text-type-formatted blockquote p:first-child,.ck-content blockquote p:first-child{display:inline;font-size:inherit;line-height:1.18em;position:relative;letter-spacing:.36px}.paragraph--type--text blockquote p:last-child:not(:first-child),.paragraph--type--image-text blockquote p:last-child:not(:first-child),.paragraph--type--text-text blockquote p:last-child:not(:first-child),.paragraph--type--teaser-fullwidth blockquote p:last-child:not(:first-child),.paragraph--type--teaser--left-right blockquote p:last-child:not(:first-child),.text-type-formatted blockquote p:last-child:not(:first-child),.ck-content blockquote p:last-child:not(:first-child){font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;color:#262626;font-size:18px;line-height:1.2}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--text blockquote p:last-child:not(:first-child),.paragraph--type--image-text blockquote p:last-child:not(:first-child),.paragraph--type--text-text blockquote p:last-child:not(:first-child),.paragraph--type--teaser-fullwidth blockquote p:last-child:not(:first-child),.paragraph--type--teaser--left-right blockquote p:last-child:not(:first-child),.text-type-formatted blockquote p:last-child:not(:first-child),.ck-content blockquote p:last-child:not(:first-child){font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--text blockquote p:last-child:not(:first-child),.paragraph--type--image-text blockquote p:last-child:not(:first-child),.paragraph--type--text-text blockquote p:last-child:not(:first-child),.paragraph--type--teaser-fullwidth blockquote p:last-child:not(:first-child),.paragraph--type--teaser--left-right blockquote p:last-child:not(:first-child),.text-type-formatted blockquote p:last-child:not(:first-child),.ck-content blockquote p:last-child:not(:first-child){font-size:20px}}.paragraph--type--text blockquote:before,.paragraph--type--image-text blockquote:before,.paragraph--type--text-text blockquote:before,.paragraph--type--teaser-fullwidth blockquote:before,.paragraph--type--teaser--left-right blockquote:before,.text-type-formatted blockquote:before,.ck-content blockquote:before{content:"“";color:#B32B23;font-family:'Bree-Regular', Arial, sans-serif;font-size:90px;font-style:normal;position:absolute;top:-25px;left:-25px;line-height:1.15}@media only screen and (max-width: 767px){.paragraph--type--text blockquote:before,.paragraph--type--image-text blockquote:before,.paragraph--type--text-text blockquote:before,.paragraph--type--teaser-fullwidth blockquote:before,.paragraph--type--teaser--left-right blockquote:before,.text-type-formatted blockquote:before,.ck-content blockquote:before{font-size:40px;top:-8px;left:-5px}}.paragraph--type--text blockquote>*,.paragraph--type--image-text blockquote>*,.paragraph--type--text-text blockquote>*,.paragraph--type--teaser-fullwidth blockquote>*,.paragraph--type--teaser--left-right blockquote>*,.text-type-formatted blockquote>*,.ck-content blockquote>*{margin:0}.paragraph--type--text.checkmark ul,.paragraph--type--text ul.checkmark,.paragraph--type--image-text.checkmark ul,.paragraph--type--image-text ul.checkmark,.paragraph--type--text-text.checkmark ul,.paragraph--type--text-text ul.checkmark,.paragraph--type--teaser-fullwidth.checkmark ul,.paragraph--type--teaser-fullwidth ul.checkmark,.paragraph--type--teaser--left-right.checkmark ul,.paragraph--type--teaser--left-right ul.checkmark,.text-type-formatted.checkmark ul,.text-type-formatted ul.checkmark,.ck-content.checkmark ul,.ck-content ul.checkmark{list-style:none;padding-left:45px}@media only screen and (max-width: 767px){.paragraph--type--text.checkmark ul,.paragraph--type--text ul.checkmark,.paragraph--type--image-text.checkmark ul,.paragraph--type--image-text ul.checkmark,.paragraph--type--text-text.checkmark ul,.paragraph--type--text-text ul.checkmark,.paragraph--type--teaser-fullwidth.checkmark ul,.paragraph--type--teaser-fullwidth ul.checkmark,.paragraph--type--teaser--left-right.checkmark ul,.paragraph--type--teaser--left-right ul.checkmark,.text-type-formatted.checkmark ul,.text-type-formatted ul.checkmark,.ck-content.checkmark ul,.ck-content ul.checkmark{padding-left:35px}}.paragraph--type--text.checkmark ul li,.paragraph--type--text ul.checkmark li,.paragraph--type--image-text.checkmark ul li,.paragraph--type--image-text ul.checkmark li,.paragraph--type--text-text.checkmark ul li,.paragraph--type--text-text ul.checkmark li,.paragraph--type--teaser-fullwidth.checkmark ul li,.paragraph--type--teaser-fullwidth ul.checkmark li,.paragraph--type--teaser--left-right.checkmark ul li,.paragraph--type--teaser--left-right ul.checkmark li,.text-type-formatted.checkmark ul li,.text-type-formatted ul.checkmark li,.ck-content.checkmark ul li,.ck-content ul.checkmark li{font-size:18px;position:relative;padding:10px 0}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--text.checkmark ul li,.paragraph--type--text ul.checkmark li,.paragraph--type--image-text.checkmark ul li,.paragraph--type--image-text ul.checkmark li,.paragraph--type--text-text.checkmark ul li,.paragraph--type--text-text ul.checkmark li,.paragraph--type--teaser-fullwidth.checkmark ul li,.paragraph--type--teaser-fullwidth ul.checkmark li,.paragraph--type--teaser--left-right.checkmark ul li,.paragraph--type--teaser--left-right ul.checkmark li,.text-type-formatted.checkmark ul li,.text-type-formatted ul.checkmark li,.ck-content.checkmark ul li,.ck-content ul.checkmark li{font-size:21px;font-size:calc(18px + (24 - 18) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--text.checkmark ul li,.paragraph--type--text ul.checkmark li,.paragraph--type--image-text.checkmark ul li,.paragraph--type--image-text ul.checkmark li,.paragraph--type--text-text.checkmark ul li,.paragraph--type--text-text ul.checkmark li,.paragraph--type--teaser-fullwidth.checkmark ul li,.paragraph--type--teaser-fullwidth ul.checkmark li,.paragraph--type--teaser--left-right.checkmark ul li,.paragraph--type--teaser--left-right ul.checkmark li,.text-type-formatted.checkmark ul li,.text-type-formatted ul.checkmark li,.ck-content.checkmark ul li,.ck-content ul.checkmark li{font-size:24px}}.paragraph--type--text.checkmark ul li:before,.paragraph--type--text ul.checkmark li:before,.paragraph--type--image-text.checkmark ul li:before,.paragraph--type--image-text ul.checkmark li:before,.paragraph--type--text-text.checkmark ul li:before,.paragraph--type--text-text ul.checkmark li:before,.paragraph--type--teaser-fullwidth.checkmark ul li:before,.paragraph--type--teaser-fullwidth ul.checkmark li:before,.paragraph--type--teaser--left-right.checkmark ul li:before,.paragraph--type--teaser--left-right ul.checkmark li:before,.text-type-formatted.checkmark ul li:before,.text-type-formatted ul.checkmark li:before,.ck-content.checkmark ul li:before,.ck-content ul.checkmark li:before{content:"";background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/check--red.svg) no-repeat center;background-size:contain;left:-45px;top:0.55em;position:absolute;width:1.2em;height:1.2em}@media only screen and (max-width: 767px){.paragraph--type--text.checkmark ul li:before,.paragraph--type--text ul.checkmark li:before,.paragraph--type--image-text.checkmark ul li:before,.paragraph--type--image-text ul.checkmark li:before,.paragraph--type--text-text.checkmark ul li:before,.paragraph--type--text-text ul.checkmark li:before,.paragraph--type--teaser-fullwidth.checkmark ul li:before,.paragraph--type--teaser-fullwidth ul.checkmark li:before,.paragraph--type--teaser--left-right.checkmark ul li:before,.paragraph--type--teaser--left-right ul.checkmark li:before,.text-type-formatted.checkmark ul li:before,.text-type-formatted ul.checkmark li:before,.ck-content.checkmark ul li:before,.ck-content ul.checkmark li:before{left:-35px;top:0.65em}}.paragraph--type--text.checkmark ul.text-2-cols,.paragraph--type--text ul.checkmark.text-2-cols,.paragraph--type--image-text.checkmark ul.text-2-cols,.paragraph--type--image-text ul.checkmark.text-2-cols,.paragraph--type--text-text.checkmark ul.text-2-cols,.paragraph--type--text-text ul.checkmark.text-2-cols,.paragraph--type--teaser-fullwidth.checkmark ul.text-2-cols,.paragraph--type--teaser-fullwidth ul.checkmark.text-2-cols,.paragraph--type--teaser--left-right.checkmark ul.text-2-cols,.paragraph--type--teaser--left-right ul.checkmark.text-2-cols,.text-type-formatted.checkmark ul.text-2-cols,.text-type-formatted ul.checkmark.text-2-cols,.ck-content.checkmark ul.text-2-cols,.ck-content ul.checkmark.text-2-cols{-webkit-column-gap:75px;column-gap:75px}.paragraph--type--text.plus ul,.paragraph--type--text ul.plus,.paragraph--type--image-text.plus ul,.paragraph--type--image-text ul.plus,.paragraph--type--text-text.plus ul,.paragraph--type--text-text ul.plus,.paragraph--type--teaser-fullwidth.plus ul,.paragraph--type--teaser-fullwidth ul.plus,.paragraph--type--teaser--left-right.plus ul,.paragraph--type--teaser--left-right ul.plus,.text-type-formatted.plus ul,.text-type-formatted ul.plus,.ck-content.plus ul,.ck-content ul.plus{list-style:none;padding-left:35px}@media only screen and (max-width: 767px){.paragraph--type--text.plus ul,.paragraph--type--text ul.plus,.paragraph--type--image-text.plus ul,.paragraph--type--image-text ul.plus,.paragraph--type--text-text.plus ul,.paragraph--type--text-text ul.plus,.paragraph--type--teaser-fullwidth.plus ul,.paragraph--type--teaser-fullwidth ul.plus,.paragraph--type--teaser--left-right.plus ul,.paragraph--type--teaser--left-right ul.plus,.text-type-formatted.plus ul,.text-type-formatted ul.plus,.ck-content.plus ul,.ck-content ul.plus{padding-left:30px}}.paragraph--type--text.plus ul li,.paragraph--type--text ul.plus li,.paragraph--type--image-text.plus ul li,.paragraph--type--image-text ul.plus li,.paragraph--type--text-text.plus ul li,.paragraph--type--text-text ul.plus li,.paragraph--type--teaser-fullwidth.plus ul li,.paragraph--type--teaser-fullwidth ul.plus li,.paragraph--type--teaser--left-right.plus ul li,.paragraph--type--teaser--left-right ul.plus li,.text-type-formatted.plus ul li,.text-type-formatted ul.plus li,.ck-content.plus ul li,.ck-content ul.plus li{font-size:18px;position:relative;padding:10px 0}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--text.plus ul li,.paragraph--type--text ul.plus li,.paragraph--type--image-text.plus ul li,.paragraph--type--image-text ul.plus li,.paragraph--type--text-text.plus ul li,.paragraph--type--text-text ul.plus li,.paragraph--type--teaser-fullwidth.plus ul li,.paragraph--type--teaser-fullwidth ul.plus li,.paragraph--type--teaser--left-right.plus ul li,.paragraph--type--teaser--left-right ul.plus li,.text-type-formatted.plus ul li,.text-type-formatted ul.plus li,.ck-content.plus ul li,.ck-content ul.plus li{font-size:21px;font-size:calc(18px + (24 - 18) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--text.plus ul li,.paragraph--type--text ul.plus li,.paragraph--type--image-text.plus ul li,.paragraph--type--image-text ul.plus li,.paragraph--type--text-text.plus ul li,.paragraph--type--text-text ul.plus li,.paragraph--type--teaser-fullwidth.plus ul li,.paragraph--type--teaser-fullwidth ul.plus li,.paragraph--type--teaser--left-right.plus ul li,.paragraph--type--teaser--left-right ul.plus li,.text-type-formatted.plus ul li,.text-type-formatted ul.plus li,.ck-content.plus ul li,.ck-content ul.plus li{font-size:24px}}.paragraph--type--text.plus ul li:before,.paragraph--type--text ul.plus li:before,.paragraph--type--image-text.plus ul li:before,.paragraph--type--image-text ul.plus li:before,.paragraph--type--text-text.plus ul li:before,.paragraph--type--text-text ul.plus li:before,.paragraph--type--teaser-fullwidth.plus ul li:before,.paragraph--type--teaser-fullwidth ul.plus li:before,.paragraph--type--teaser--left-right.plus ul li:before,.paragraph--type--teaser--left-right ul.plus li:before,.text-type-formatted.plus ul li:before,.text-type-formatted ul.plus li:before,.ck-content.plus ul li:before,.ck-content ul.plus li:before{content:"";background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/close--red.svg) no-repeat center;background-size:contain;left:-35px;top:0.65em;position:absolute;width:.7em;height:1em;-webkit-transform:rotate(45deg);transform:rotate(45deg)}@media only screen and (max-width: 767px){.paragraph--type--text.plus ul li:before,.paragraph--type--text ul.plus li:before,.paragraph--type--image-text.plus ul li:before,.paragraph--type--image-text ul.plus li:before,.paragraph--type--text-text.plus ul li:before,.paragraph--type--text-text ul.plus li:before,.paragraph--type--teaser-fullwidth.plus ul li:before,.paragraph--type--teaser-fullwidth ul.plus li:before,.paragraph--type--teaser--left-right.plus ul li:before,.paragraph--type--teaser--left-right ul.plus li:before,.text-type-formatted.plus ul li:before,.text-type-formatted ul.plus li:before,.ck-content.plus ul li:before,.ck-content ul.plus li:before{left:-30px;top:0.75em}}.paragraph--type--text.plus ul.text-2-cols,.paragraph--type--text ul.plus.text-2-cols,.paragraph--type--image-text.plus ul.text-2-cols,.paragraph--type--image-text ul.plus.text-2-cols,.paragraph--type--text-text.plus ul.text-2-cols,.paragraph--type--text-text ul.plus.text-2-cols,.paragraph--type--teaser-fullwidth.plus ul.text-2-cols,.paragraph--type--teaser-fullwidth ul.plus.text-2-cols,.paragraph--type--teaser--left-right.plus ul.text-2-cols,.paragraph--type--teaser--left-right ul.plus.text-2-cols,.text-type-formatted.plus ul.text-2-cols,.text-type-formatted ul.plus.text-2-cols,.ck-content.plus ul.text-2-cols,.ck-content ul.plus.text-2-cols{-webkit-column-gap:75px;column-gap:75px}.paragraph--type--text .text-2-cols,.paragraph--type--image-text .text-2-cols,.paragraph--type--text-text .text-2-cols,.paragraph--type--teaser-fullwidth .text-2-cols,.paragraph--type--teaser--left-right .text-2-cols,.text-type-formatted .text-2-cols,.ck-content .text-2-cols{-webkit-column-count:2;column-count:2;-webkit-column-gap:50px;column-gap:50px}@media only screen and (max-width: 767px){.paragraph--type--text .text-2-cols,.paragraph--type--image-text .text-2-cols,.paragraph--type--text-text .text-2-cols,.paragraph--type--teaser-fullwidth .text-2-cols,.paragraph--type--teaser--left-right .text-2-cols,.text-type-formatted .text-2-cols,.ck-content .text-2-cols{-webkit-column-count:1;column-count:1}}.paragraph--type--text p+p,.paragraph--type--image-text p+p,.paragraph--type--text-text p+p,.paragraph--type--teaser-fullwidth p+p,.paragraph--type--teaser--left-right p+p,.text-type-formatted p+p,.ck-content p+p{margin-top:20px}.paragraph--type--text h2,.paragraph--type--image-text h2,.paragraph--type--text-text h2,.paragraph--type--teaser-fullwidth h2,.paragraph--type--teaser--left-right h2,.text-type-formatted h2,.ck-content h2{margin-bottom:20px}.paragraph--type--text h3,.paragraph--type--text h4,.paragraph--type--text h5,.paragraph--type--text h6,.paragraph--type--image-text h3,.paragraph--type--image-text h4,.paragraph--type--image-text h5,.paragraph--type--image-text h6,.paragraph--type--text-text h3,.paragraph--type--text-text h4,.paragraph--type--text-text h5,.paragraph--type--text-text h6,.paragraph--type--teaser-fullwidth h3,.paragraph--type--teaser-fullwidth h4,.paragraph--type--teaser-fullwidth h5,.paragraph--type--teaser-fullwidth h6,.paragraph--type--teaser--left-right h3,.paragraph--type--teaser--left-right h4,.paragraph--type--teaser--left-right h5,.paragraph--type--teaser--left-right h6,.text-type-formatted h3,.text-type-formatted h4,.text-type-formatted h5,.text-type-formatted h6,.ck-content h3,.ck-content h4,.ck-content h5,.ck-content h6{margin-bottom:20px}.paragraph--type--text .text-align-left,.paragraph--type--image-text .text-align-left,.paragraph--type--text-text .text-align-left,.paragraph--type--teaser-fullwidth .text-align-left,.paragraph--type--teaser--left-right .text-align-left,.text-type-formatted .text-align-left,.ck-content .text-align-left{text-align:left}.paragraph--type--text .text-align-center,.paragraph--type--image-text .text-align-center,.paragraph--type--text-text .text-align-center,.paragraph--type--teaser-fullwidth .text-align-center,.paragraph--type--teaser--left-right .text-align-center,.text-type-formatted .text-align-center,.ck-content .text-align-center{text-align:center}.paragraph--type--text .text-align-right,.paragraph--type--image-text .text-align-right,.paragraph--type--text-text .text-align-right,.paragraph--type--teaser-fullwidth .text-align-right,.paragraph--type--teaser--left-right .text-align-right,.text-type-formatted .text-align-right,.ck-content .text-align-right{text-align:right}.ck-content a.button{line-height:50px}.node--type--job>.field_hero{position:relative;z-index:1}.node--type--job>.field_hero+a{margin-top:-78px;margin-left:calc(var(--grid-size)  * 6)}@media only screen and (min-width: 768px){.node--type--job .breadcrumbs{margin-left:calc(var(--grid-size))}}.node--type--job .breadcrumbs a{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;position:relative;z-index:2;display:block;text-decoration:none;line-height:78px;color:#979797}@media (min-width: 320px) and (max-width: 1399px){.node--type--job .breadcrumbs a{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.node--type--job .breadcrumbs a{font-size:20px}}.node--type--job .breadcrumbs a:hover{color:#262626}.node--type--job .breadcrumbs a:before{content:'';display:inline-block;vertical-align:middle;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow-breadcrumbs.svg) no-repeat center;background-size:auto 24px;height:24px;width:24px;position:relative;top:-1px;margin-right:1rem;-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}@media only screen and (min-width: 768px){.node--type--job__header,.node--type--job__detail{padding-top:calc(var(--grid-size) * 1.5)}}@media only screen and (max-width: 767px){.node--type--job__header,.node--type--job__detail{padding-top:calc(var(--grid-size) * 1)}}.node--type--job__header{padding-top:0}.node--type--job__header a{text-decoration:none;font-size:2.8rem}@media only screen and (max-width: 767px){.node--type--job__header h1{line-height:1.25}}.node--type--job__summary{margin-top:calc(var(--grid-size) * 0.75)}@media only screen and (min-width: 1024px){.node--type--job__summary{display:flex;align-items:center;flex-wrap:wrap}}.node--type--job__summary .field_date{width:100%;margin-bottom:calc(var(--grid-size) * 0.25)}.node--type--job__summary>div:before,.node--type--job__summary>div>div{display:inline-block;vertical-align:middle}.node--type--job__summary>div:before{margin-right:.75rem;position:relative}.node--type--job__summary>div:not(:last-of-type){margin-right:var(--grid-size)}.node--type--job__summary>div.field_working_time_model:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/clock.svg);width:20px;top:3px}.node--type--job__summary>div.field_location:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/location.svg);width:20px;top:3px}.node--type--job__summary>div.field_pdf_download:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/pdf.svg);width:20px;top:3px}@media only screen and (min-width: 768px){.node--type--job__detail{margin-left:calc(var(--grid-size) * 2.5)}}@media only screen and (min-width: 768px){.node--type--job__detail>div+div{margin-top:calc(var(--grid-size) * 1.5)}}@media only screen and (max-width: 767px){.node--type--job__detail>div+div{margin-top:calc(var(--grid-size) * 1)}}.node--type--job__detail>div h2{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;margin-bottom:calc(var(--grid-size) * .5)}@media only screen and (max-width: 767px){.node--type--job__detail>div h2{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media only screen and (min-width: 768px){.node--type--job__content{margin-top:calc(var(--grid-size) * 1.5)}}@media only screen and (max-width: 767px){.node--type--job__content{margin-top:calc(var(--grid-size) * 1)}}.node--type--job__content .paragraph--type--text.paragraph--type--text{margin-left:0;margin-right:0}.paragraph+.paragraph{margin-top:var(--grid-size)}.paragraph p{-webkit-font-feature-settings:"ss04";font-feature-settings:"ss04"}.paragraph--type--hero-image{position:relative;height:calc(510px + 84px)}.paragraph--type--hero-image:before{-webkit-clip-path:url(#curve--bottom);clip-path:url(#curve--bottom)}.paragraph--type--hero-image .field_hero_slider_item_image img{display:block;width:100%;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%;height:510px !important;min-height:0 !important}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--hero-image .field_hero_slider_item_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}.paragraph--type--hero-image .field_headline{position:absolute;width:200px;height:200px;bottom:0;background:#B32B23;color:white;border-radius:100px;text-align:center;box-sizing:border-box;display:flex;align-items:center;justify-content:center}@media only screen and (min-width: 768px){.paragraph--type--hero-image .field_headline{left:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--hero-image .field_headline{left:calc(var(--grid-size) * .5)}}.paragraph--type--hero-image #hero__curve{position:absolute;top:-1px;left:0;right:0;-webkit-transform:scaleX(1.01);transform:scaleX(1.01)}.paragraph--type--hero-image.has-boxes{display:-ms-grid;display:grid;-ms-grid-columns:1fr;grid-template-columns:1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;height:auto;margin:0 0 100px}.paragraph--type--hero-image.has-boxes > *:nth-child(1){-ms-grid-row: 1;-ms-grid-column: 1}.paragraph--type--hero-image.has-boxes>*{-ms-grid-row:1;grid-row-start:1;-ms-grid-column:1;grid-column-start:1}.paragraph--type--hero-image.has-boxes .field_hero_text_content{position:relative}.paragraph--type--hero-image.has-boxes .field_hero_text_content .row{margin:0 calc(var(--grid-size) / 2)}.paragraph--type--hero-image.has-boxes .field_hero_text_content div[class*=col-]{--bs-gutter-x: var(--grid-size) !important}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes .field_hero_text_content div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)* 2) !important}}.paragraph--type--hero-image.has-boxes .field_hero_slider_item_image img{position:static;height:100% !important;max-height:850px}.paragraph--type--hero-image.has-boxes .field_hero_text{position:relative}.paragraph--type--hero-image.has-boxes .field_hero_text .field_text{position:relative;bottom:auto;top:auto;margin-top:110%;background-color:#FFFFFF;border-radius:33.33333px;padding:33.33333px;box-shadow:0px 3px 30px rgba(0,0,0,0.160784);width:100%;font-size:20px}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--hero-image.has-boxes .field_hero_text .field_text{font-size:22px;font-size:calc(20px + (24 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--hero-image.has-boxes .field_hero_text .field_text{font-size:24px}}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-boxes .field_hero_text .field_text{margin-top:100%}}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes .field_hero_text .field_text{width:100%;margin-top:7%;left:0;border-radius:calc(50px / 2);padding:25px}}.paragraph--type--hero-image.has-boxes .field_hero_headline{position:relative}.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline{position:relative;bottom:auto;top:auto;width:auto;height:auto;border-radius:33.33333px;padding:33.33333px 33.33333px 100px 33.33333px;box-shadow:0px 3px 30px rgba(0,0,0,0.160784);width:calc(100% - 0px);text-align:left;left:0;margin-top:118%;color:#ffffff}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline{left:calc(var(--grid-size) / 2);width:100%;margin-top:67%}}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes .field_hero_headline .field_headline{margin-top:67%;left:0;border-radius:calc(50px / 2);padding:25px 25px 50px 25px}}.paragraph--type--hero-image.has-boxes.has-colors-reversed .field_hero_headline .field_headline{background-color:#ffffff;color:#B32B23}.paragraph--type--hero-image.has-boxes.has-colors-reversed .field_hero_text .field_text{font-size:20px;background-color:#B32B23;color:#ffffff}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--hero-image.has-boxes.has-colors-reversed .field_hero_text .field_text{font-size:22px;font-size:calc(20px + (24 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--hero-image.has-boxes.has-colors-reversed .field_hero_text .field_text{font-size:24px}}.paragraph--type--hero-image .mobile-headline{display:none}.paragraph--type--hero-image.has-small-image{display:flex;height:auto;padding-top:100px;margin:0 0 100px}.paragraph--type--hero-image.has-small-image .field_text{color:#ffffff}.paragraph--type--hero-image.has-small-image .field_hero_headline .field_headline{background-color:#ffffff;color:#B32B23}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image>div{padding:0 calc(var(--grid-size))}}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image .mobile-headline{display:block;padding-bottom:40px;padding-top:30px}}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image{padding-top:50px}}.paragraph--type--hero-image.has-small-image .field_hero_slider_item_image{order:2;padding-right:calc(var(--grid-size))}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image .field_hero_slider_item_image{order:1;width:100%;margin-bottom:40px}}.paragraph--type--hero-image.has-small-image .field_hero_slider_item_image .field_media_image{position:relative}.paragraph--type--hero-image.has-small-image .field_hero_slider_item_image .field_media_image img{width:100%;height:auto;max-height:none;border-radius:50px;box-shadow:0px 3px 30px rgba(0,0,0,0.160784)}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image .field_hero_slider_item_image .field_media_image img{border-radius:calc(50px / 2)}}.paragraph--type--hero-image.has-small-image .field_hero_text_content{--bs-gutter-x: calc(var(--grid-size) * 2) !important;order:1}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image .field_hero_text_content{order:2;width:100%}}.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_headline,.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_text{width:100%}.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_headline{margin:0}.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_headline .field_headline{position:relative;bottom:auto;background-color:transparent;padding:50px 0 150px;justify-content:flex-start;box-shadow:none;margin:0}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_headline .field_headline{padding:25px 0;display:none}}.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_text .field_text{font-size:20px;position:relative;top:auto;background-color:#A9C53B;width:100%;margin:0}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_text .field_text{font-size:22px;font-size:calc(20px + (24 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_text .field_text{font-size:24px}}@media only screen and (max-width: 1023px){.paragraph--type--hero-image.has-small-image .field_hero_text_content .field_hero_text .field_text{padding:25px}}#block-frankfurter-verband-theme-content:has(.paragraph--type--hero-image.has-boxes) .breadcrumbs,#block-frankfurter-verband-theme-content:has(.paragraph--type--hero-image.has-small-image) .breadcrumbs{display:none}.paragraph--type--onlyfy{padding:0}@media only screen and (max-width: 767px){.paragraph--type--onlyfy{padding:0}}.paragraph--type--onlyfy .paragraph--type--text{margin-bottom:60px}@media only screen and (max-width: 767px){.paragraph--type--onlyfy .paragraph--type--text{margin-bottom:30px;padding:0 calc(var(--grid-size))}}.paragraph--type--onlyfy .paragraph--type--text.text-2-cols ul{-webkit-column-count:2;column-count:2;-webkit-column-gap:60px;column-gap:60px}@media only screen and (max-width: 1023px){.paragraph--type--onlyfy .paragraph--type--text.text-2-cols ul{-webkit-column-count:1;column-count:1}}.paragraph--type--onlyfy .paragraph--type--text.row-2-cols>div:nth-child(2){display:flex}@media only screen and (max-width: 1023px){.paragraph--type--onlyfy .paragraph--type--text.row-2-cols>div:nth-child(2){flex-wrap:wrap}}.paragraph--type--onlyfy .paragraph--type--text.row-2-cols>div:nth-child(2)>div:first-child{display:none}.paragraph--type--onlyfy .paragraph--type--text.row-2-cols>div:nth-child(2)>div{flex:1 0 50%}@media only screen and (max-width: 1023px){.paragraph--type--onlyfy .paragraph--type--text.row-2-cols>div:nth-child(2)>div{flex:1 0 100%}}.paragraph--type--onlyfy .paragraph--type--text.row-2-cols>div:nth-child(2) ul{padding-right:30px}.paragraph--type--onlyfy h1{margin-bottom:50px}.paragraph--type--onlyfy h2,.paragraph--type--onlyfy h3{color:#B32B23}.paragraph--type--onlyfy a.button.back{display:inline-block}@media only screen and (max-width: 767px){.paragraph--type--onlyfy a.button.back{margin-left:30px;line-height:1.9}}.paragraph--type--onlyfy a.button.back:after{float:left;top:5px;left:-5px;-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}@media only screen and (max-width: 767px){.paragraph--type--onlyfy .table-wrapper{overflow-x:auto}}.paragraph--type--onlyfy table{border-collapse:collapse;width:100%}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table{display:flex;flex-direction:column}}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table thead{display:none}}.paragraph--type--onlyfy table thead tr th{border-bottom:3px solid #B32B23;font-family:SourceSansPro-Bold;padding:25px 0}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table tbody{flex:1 0 100%;display:flex;flex-direction:column}}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table tbody tr{flex:1 0 100%;display:flex;flex-wrap:wrap}}.paragraph--type--onlyfy table tbody tr td{padding:25px;vertical-align:top;border-bottom:2px solid #7B7B7B}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table tbody tr td{flex:1 0 auto;border-bottom:2px solid #B32B23;padding:15px;padding-top:7.5px}}.paragraph--type--onlyfy table tbody tr td:first-child{padding-left:0;flex:1 0 100%}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table tbody tr td:first-child{border-bottom:2px solid transparent;padding-bottom:0;padding-top:15px;font-family:Bree-Bold;letter-spacing:.5px}}@media only screen and (max-width: 767px){.paragraph--type--onlyfy table tbody tr td:nth-child(2){padding-left:0}}.paragraph--type--onlyfy table tbody tr td:nth-child(3){text-align:center}.paragraph--type--onlyfy table tbody tr td:last-child{text-align:right;padding-right:0}.paragraph--type--onlyfy table tbody tr td a{text-decoration:none}.paragraph--type--onlyfy .contact-container{margin-top:50px}.paragraph--type--onlyfy .contact-container img{border-radius:50px;overflow:hidden}@media only screen and (max-width: 767px){.paragraph--type--onlyfy .contact-container img{border-radius:var(--font-size-base)}}.paragraph--type--onlyfy .contact-container a{text-underline-offset:3px}@media only screen and (max-width: 767px){.paragraph--type--onlyfy .contact-container div:last-child{margin-top:15px}}.paragraph--type--onlyfy .contact-container div:last-child div p br{content:"";display:block;margin:1rem 0}.paragraph--type--onlyfy .contact-container div:last-child div p:last-child{display:none}@media only screen and (max-width: 767px){.paragraph--type--onlyfy .contact-container h2{display:none}}.paragraph--type--onlyfy #footer__social{display:flex;margin-top:calc(var(--grid-size) * .5);justify-content:center}.paragraph--type--onlyfy #footer__social li::marker{display:none;color:transparent}.paragraph--type--onlyfy #footer__social li:not(:last-of-type){margin-right:calc(var(--grid-size) * .25)}.paragraph--type--onlyfy #footer__social li svg{width:50px;height:50px}.paragraph--type--onlyfy #footer__social li svg circle{fill:none;stroke-width:3px}.paragraph--type--onlyfy #footer__social li svg path{stroke:none}.paragraph--type--onlyfy #footer__social li a[href*="facebook"] svg path{fill:#3b5998;fill:#B32B23}.paragraph--type--onlyfy #footer__social li a[href*="facebook"] svg circle{stroke:#3b5998;stroke:#B32B23}.paragraph--type--onlyfy #footer__social li a[href*="twitter"] svg path{fill:#1DA1F2;fill:#B32B23}.paragraph--type--onlyfy #footer__social li a[href*="twitter"] svg circle{stroke:#1DA1F2;stroke:#B32B23}.paragraph--type--onlyfy #footer__social li a[href*="youtube"] svg path{fill:red;fill:#B32B23}.paragraph--type--onlyfy #footer__social li a[href*="youtube"] svg circle{stroke:red;stroke:#B32B23}.paragraph--type--onlyfy #footer__social li a[href*="instagram"] svg path{fill:red;fill:#B32B23 !important}body:has(.paragraph--type--hero-image.job-detail) .paragraph--type--hero-image:not(.job-detail){display:none}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline{margin-top:64%;flex-direction:column;align-items:flex-start;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding-bottom:40px}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline .paragraph--type--text{margin-bottom:0px}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline{margin-top:50%}}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul{list-style-type:disc;margin-left:-40px;font-size:20px;color:#262626;padding-right:0}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul{margin-left:-20px}}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul li{margin-right:35px;float:left}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul li::marker{color:#B32B23}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul li:first-child::marker{display:none;color:transparent}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul li:first-child::marker{display:list-item;color:#B32B23}}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_headline .field_headline ul li:last-child{margin-right:0}}.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_text .field_text{margin-top:13%}@media only screen and (max-width: 767px){.paragraph--type--hero-image.has-boxes.has-colors-reversed.job-detail .field_hero_text .field_text{margin-top:10%}}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}.paragraph--type--hero-slider{overflow:hidden;position:relative}.paragraph--type--hero-slider #hero__curve{position:absolute;top:0;left:0;right:0;-webkit-transform:scaleX(1.01);transform:scaleX(1.01)}@media only screen and (max-width: 1079px){.paragraph--type--hero-slider #hero__curve{top:-1px}}.paragraph--type--hero-slider+.paragraph{margin-top:var(--grid-size)}@media only screen and (max-width: 767px){.paragraph--type--hero-slider+.paragraph{margin-top:0}}.paragraph--type--hero-slider__slider{transition:-webkit-transform .5s ease-out;transition:transform .5s ease-out;transition:transform .5s ease-out, -webkit-transform .5s ease-out}.paragraph--type--hero-slider__slider .paragraph--type--hero-slider-items{width:100%;position:relative;overflow:hidden}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip{text-align:center;left:calc(var(--grid-size) * 2);right:calc(50% + (var(--grid-size) * 1.5));width:440px;height:440px;position:absolute;top:42%;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#B32B23;color:#fff;border-radius:50%;max-width:calc(var(--grid-size) * 3 + 100vw);max-height:calc(var(--grid-size) * 3 + 100vw)}@media only screen and (min-width: 768px) and (max-width: 1279px){.paragraph--type--hero-slider__slider .hero_slider_item__tooltip{left:calc(var(--grid-size) * -1);right:auto;top:50%}}@media only screen and (max-width: 766px){.paragraph--type--hero-slider__slider .hero_slider_item__tooltip{position:relative;left:calc(-1 * var(--grid-size));right:auto;-webkit-transform:translateX(calc(-.5 * var(--grid-size)));transform:translateX(calc(-.5 * var(--grid-size)));margin-top:-20%}}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip:empty{display:none}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip>div:not(.field_tagline){position:absolute;left:0;top:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;padding:calc(var(--grid-size) * 1);align-items:center}@media only screen and (max-width: 767px){.paragraph--type--hero-slider__slider .hero_slider_item__tooltip>div:not(.field_tagline){padding-right:calc(var(--grid-size) * 1);padding-left:calc(var(--grid-size) * 1.5)}}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip{max-width:90vw;width:100%}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h1,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h2,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h3,.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_tooltip h4{margin-bottom:0.5em}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link{max-width:80%;min-width:240px}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_hero_slider_item_link a{margin-top:1em;color:#262626;display:block}.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline{position:absolute;background:linear-gradient(270deg, #dc602b 0%, #eaa22e 100%);top:calc(var(--grid-size) * -1.5);right:calc(var(--grid-size) * .5);width:calc(var(--grid-size) * 4);height:calc(var(--grid-size) * 4);padding:25px;border-radius:50%}@media only screen and (max-width: 767px){.paragraph--type--hero-slider__slider .hero_slider_item__tooltip .field_tagline{width:calc(var(--grid-size) * 3);height:calc(var(--grid-size) * 3);right:calc(var(--grid-size) * 1);top:calc(var(--grid-size) * -.5)}}.paragraph--type--hero-slider__slider .field_hero_slider_item_image{position:relative}.paragraph--type--hero-slider__slider .field_hero_slider_item_image .field_media_image{position:relative;overflow:hidden;max-height:680px}@media only screen and (min-width: 1440px){.paragraph--type--hero-slider__slider .field_hero_slider_item_image .field_media_image{height:calc(1440px / 1.333)}}@media only screen and (max-width: 1439px){.paragraph--type--hero-slider__slider .field_hero_slider_item_image .field_media_image{height:calc(100vw / 1.333)}}.paragraph--type--hero-slider__slider .field_hero_slider_item_image .field_media_image img{position:absolute;display:block;width:100%;left:0;top:0}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--hero-slider__slider .field_hero_slider_item_image .field_media_image img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center -70px;object-position:center -70px}}@media only screen and (max-width: 999px){.paragraph--type--hero-slider__slider .field_hero_slider_item_image .field_media_image img{-o-object-position:center top;object-position:center top}}.paragraph--type--hero-slider__thumbnails{overflow:hidden}@media only screen and (max-width: 767px){.paragraph--type--hero-slider__thumbnails{display:none}}.paragraph--type--hero-slider__thumbnails>div{display:flex;flex-wrap:nowrap;width:10000%;margin:0;position:relative;transition:-webkit-transform .5s ease-out;transition:transform .5s ease-out;transition:transform .5s ease-out, -webkit-transform .5s ease-out}.paragraph--type--hero-slider__thumbnails>div img{display:block;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;cursor:pointer;transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear;border-left:solid 2.5px white;border-right:solid 2.5px white}.paragraph--type--hero-slider__thumbnails>div img.active{-webkit-transform:scale(0.9);transform:scale(0.9)}.paragraph--type--hero-slider .slider__navigation{position:absolute;z-index:100}@media only screen and (min-width: 768px){.paragraph--type--hero-slider .slider__navigation{bottom:var(--grid-size);right:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--hero-slider .slider__navigation{bottom:auto;right:calc(var(--grid-size) * .5);top:calc(var(--grid-size) * .5);margin-top:0}}@media only screen and (max-width: 767px){div.paragraph--type--hero-slider-items--current .hero_slider_item__tooltip{-webkit-transform:translateX(calc(var(--grid-size) * -1));transform:translateX(calc(var(--grid-size) * -1))}}.paragraph--type--colored-boxes .row{margin:0 calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--colored-boxes .row{margin:0}}.paragraph--type--colored-boxes .row>div[class*=col-]{--bs-gutter-x: var(--grid-size) !important}@media only screen and (max-width: 767px){.paragraph--type--colored-boxes .row>div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)* 2) !important}}.paragraph--type--colored-boxes .row .headline,.paragraph--type--colored-boxes .row .mobile-headline{padding:var(--grid-size) 0}.paragraph--type--colored-boxes .row .headline h2,.paragraph--type--colored-boxes .row .mobile-headline h2{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 2.4);line-height:1.15;color:#B32B23}@media only screen and (max-width: 767px){.paragraph--type--colored-boxes .row .headline h2,.paragraph--type--colored-boxes .row .mobile-headline h2{font-size:calc(var(--font-size-base) * 2.4 * .8)}}@media only screen and (max-width: 767px){.paragraph--type--colored-boxes .row .headline{display:none}}.paragraph--type--colored-boxes .row .mobile-headline{display:none}@media only screen and (max-width: 767px){.paragraph--type--colored-boxes .row .mobile-headline{display:block}}.paragraph--type--colored-boxes .row .box-1{background-color:#B32B23;margin-right:8.3333333333%}.paragraph--type--colored-boxes .row .box-2{background-color:#A9C53B}.paragraph--type--colored-boxes .row .box-3{background-color:#eaa22e;margin-left:8.3333333333%}.paragraph--type--colored-boxes .row .box-1,.paragraph--type--colored-boxes .row .box-2,.paragraph--type--colored-boxes .row .box-3{padding:33.33333px;border-radius:33.33333px;color:#ffffff;margin-bottom:var(--grid-size);box-shadow:0px 30px 50px rgba(0,0,0,0.243137)}@media only screen and (max-width: 1298px){.paragraph--type--colored-boxes .row .box-1,.paragraph--type--colored-boxes .row .box-2,.paragraph--type--colored-boxes .row .box-3{margin-left:0;margin-right:0;width:100%}}@media only screen and (max-width: 767px){.paragraph--type--colored-boxes .row .box-1,.paragraph--type--colored-boxes .row .box-2,.paragraph--type--colored-boxes .row .box-3{padding:25px;border-radius:calc(50px / 2)}}.paragraph--type--colored-boxes .row .box-1 h3,.paragraph--type--colored-boxes .row .box-2 h3,.paragraph--type--colored-boxes .row .box-3 h3{margin-bottom:var(--font-size-base)}.paragraph--type--image-text .row{margin:0 calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--image-text .row{margin:0}}.paragraph--type--image-text .row>div[class*=col-]{--bs-gutter-x: var(--grid-size) !important}@media only screen and (max-width: 767px){.paragraph--type--image-text .row>div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)* 2) !important}}.paragraph--type--image-text .row.flex-column>div[class*=col-]{width:100%}.paragraph--type--image-text .row.flex-column .img-txt-image{margin-bottom:var(--grid-size)}.paragraph--type--image-text .img-txt-image img{border-radius:33.33333px;box-shadow:0px 3px 30px rgba(0,0,0,0.160784)}@media only screen and (max-width: 767px){.paragraph--type--image-text .img-txt-image img{border-radius:calc(50px / 2);margin-bottom:30px}}.paragraph--type--slick-slider .paragraph--type--image-text img{width:100%}.paragraph--type--slick-slider .paragraph--type--image-text .row,.paragraph--type--slick-slider .paragraph--type--image-text .col{padding:0;margin:0}.paragraph--type--slick-slider .paragraph--type--image-text .row>div[class*=col-]{--bs-gutter-x: 0 !important}.paragraph--type--slick-slider .center-mode .img-txt-text{padding:0 20%;position:relative;opacity:0;-webkit-transform:translateY(-50px);transform:translateY(-50px);transition:all .6s ease .3s;height:150px;overflow:hidden}.paragraph--type--slick-slider .center-mode .img-txt-image{margin-bottom:20px}.paragraph--type--slick-slider .center-mode .slick-center .img-txt-text{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.paragraph--type--slick-slider .center-mode .slick-center .img-txt-text h2,.paragraph--type--slick-slider .center-mode .slick-center .img-txt-text h3{margin-bottom:10px}.paragraph--type--text-text .row{margin:0 calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--text-text .row{margin:0}}.paragraph--type--text-text .row>div[class*=col-]{--bs-gutter-x: var(--grid-size) !important}@media only screen and (max-width: 767px){.paragraph--type--text-text .row>div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)* 2) !important}}@media only screen and (max-width: 767px){.paragraph--type--text-text .row .txt-left{margin-bottom:30px}}.paragraph--type--logobar .row{margin:0 calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--logobar .row{margin:0}}.paragraph--type--logobar .row>div[class*=col-]{--bs-gutter-x: var(--grid-size) !important}@media only screen and (max-width: 767px){.paragraph--type--logobar .row>div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)* 2) !important}}.paragraph--type--logobar .logobar-headline{margin-bottom:30px;color:#B32B23}.paragraph--type--logobar .logobar-container{flex-wrap:wrap;gap:30px}.paragraph--type--logobar .logobar-container .col{min-width:200px;display:flex;justify-content:center;align-items:center}.paragraph--type--jobs{background-color:#F5F3ED}.paragraph--type--jobs .field_facility{padding-top:calc(var(--grid-size) * 1);font-size:2.8rem}.paragraph--type--jobs .field_facility a{text-decoration:none}.paragraph--type--jobs .field_facility+.field_headline{padding-top:0}.paragraph--type--jobs .field_headline{padding-top:calc(var(--grid-size) * 1.25)}.paragraph--type--jobs .field_jobs{padding:calc(var(--grid-size) * 1.5) 0}.paragraph--type--jobs .field_jobs>div{background:white;position:relative;border-radius:var(--font-size-base);padding:calc(var(--grid-size) * .5)}.paragraph--type--jobs .field_jobs>div:after{content:'';background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg) no-repeat 22px center;background-size:14px auto;width:50px;height:50px;border-radius:50px;border:solid 2px #262626;display:block;position:absolute;z-index:1;right:calc(var(--grid-size) * .5);bottom:calc(var(--grid-size) * .5)}.paragraph--type--jobs .field_jobs>div+div{margin-top:calc(var(--grid-size) * .5)}.paragraph--type--jobs .field_jobs>div>a{position:absolute;z-index:2;left:0;top:0;right:0;bottom:0;color:transparent}@media only screen and (max-width: 767px){.paragraph--type--jobs .field_jobs>div h3{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}}.paragraph--type--jobs .field_jobs>div>div{display:flex;flex-wrap:wrap;margin-top:calc(var(--grid-size) * 1);align-items:center}@media only screen and (min-width: 768px){.paragraph--type--jobs .field_jobs>div>div{padding-right:calc(50px + var(--grid-size))}}@media only screen and (max-width: 767px){.paragraph--type--jobs .field_jobs>div>div{padding-bottom:calc(50px + var(--grid-size))}}.paragraph--type--jobs .field_jobs>div>div>div:not(:last-of-type){margin-right:calc(var(--grid-size) * .5)}@media only screen and (max-width: 767px){.paragraph--type--jobs .field_jobs>div>div>div{width:100%;padding-right:0;padding-left:40px;position:relative}.paragraph--type--jobs .field_jobs>div>div>div:not(:last-child){margin-bottom:1em}}.paragraph--type--jobs .field_jobs>div>div>div:before{display:inline-block;vertical-align:middle;margin-right:.75rem;position:relative}@media only screen and (max-width: 767px){.paragraph--type--jobs .field_jobs>div>div>div:before{position:absolute;left:0}}.paragraph--type--jobs .field_jobs>div>div>div.field__working_time_model:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/clock.svg);width:20px;top:1px}.paragraph--type--jobs .field_jobs>div>div>div.field_location:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/location.svg);width:20px;top:1px}.paragraph--type--jobs .field_jobs>div>div>div.field_department:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/department.svg);width:20px;top:1px}@media only screen and (min-width: 1024px){.paragraph--type--gallery{display:flex;padding:0 calc(var(--grid-size) * .5)}}.paragraph--type--gallery>div:not(.slider){position:relative;margin:0 calc(var(--grid-size) * .5)}@media only screen and (max-width: 1023px){.paragraph--type--gallery>div:not(.slider){display:none;width:100% !important}}@media only screen and (min-width: 1024px){.paragraph--type--gallery>div:not(.slider){width:33.33%}.paragraph--type--gallery>div:not(.slider):nth-of-type(1) figure:nth-of-type(2){-webkit-transform:scale(0.75);transform:scale(0.75);-webkit-transform-origin:right top;transform-origin:right top;border-radius:calc(var(--font-size-base) * 1.5)}.paragraph--type--gallery>div:not(.slider):nth-of-type(2){padding-top:12.5%}.paragraph--type--gallery>div:not(.slider):nth-of-type(2)>figure:not(:nth-of-type(1)) span{border-radius:calc(var(--font-size-base) * 2)}.paragraph--type--gallery>div:not(.slider):nth-of-type(2)>figure:nth-of-type(2){-webkit-transform:scale(0.5);transform:scale(0.5);-webkit-transform-origin:left top;transform-origin:left top;position:absolute;width:100%;top:calc(var(--grid-size) * -1);margin-top:calc(var(--grid-size) * .25)}.paragraph--type--gallery>div:not(.slider):nth-of-type(2) div{display:flex;justify-content:space-between}.paragraph--type--gallery>div:not(.slider):nth-of-type(2) div figure{width:calc(50% - (var(--grid-size) / 2));margin-top:var(--grid-size)}.paragraph--type--gallery>div:not(.slider):nth-of-type(3){padding-top:6.25%}.paragraph--type--gallery>div:not(.slider):nth-of-type(3) figure:nth-of-type(2){-webkit-transform:scale(0.75);transform:scale(0.75);-webkit-transform-origin:left top;transform-origin:left top;border-radius:calc(var(--font-size-base) * 1.5)}}.paragraph--type--gallery figure span{display:block;position:relative;background-color:#F5F3ED;line-height:0;border-radius:var(--font-size-base);height:0;padding-top:75%;overflow:hidden}.paragraph--type--gallery figure+figure{margin-top:var(--grid-size)}.paragraph--type--gallery figure img{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--gallery figure img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}.paragraph--type--gallery>.slider{margin:0 calc(var(--grid-size) * .5);width:calc(100% - var(--grid-size))}.paragraph--type--gallery>.slider .slider__control{background-color:#fff;margin-top:0;bottom:auto;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.paragraph--type--gallery>.slider .slider__control.slider__control--previous{left:var(--grid-size)}.paragraph--type--gallery>.slider .slider__control.slider__control--next{right:var(--grid-size)}.paragraph--type--gallery>.slider figure{margin-top:0 !important}.paragraph--type--quotes-container{margin:calc(var(--grid-size)  * 2) 0;position:relative}@media only screen and (min-width: 1024px){.paragraph--type--quotes-container{padding-left:calc(var(--grid-size)  * 2.5);padding-right:calc(var(--grid-size)  * 2.5)}}@media only screen and (max-width: 1023px){.paragraph--type--quotes-container{padding-left:var(--grid-size);padding-right:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--quotes-container{padding-left:5vw;padding-right:5vw}}.paragraph--type--quote{transition:opacity .5s ease-in-out}@media only screen and (min-width: 1024px){.paragraph--type--quote{padding-left:calc(var(--grid-size)  * 4);padding-right:calc(var(--grid-size)  * 4)}}@media only screen and (min-width: 768px) and (max-width: 1023px){.paragraph--type--quote{padding-left:calc(var(--grid-size)  * 2);padding-right:calc(var(--grid-size)  * 2)}}.paragraph--type--quote:not(.paragraph--type--quote--current){opacity:0}.paragraph--type--quote .field_quote+*{margin-top:calc(var(--grid-size)  * .5)}.paragraph--type--quote .field_quote_author,.paragraph--type--quote .field_quote_details{display:inline-block}.paragraph--type--quote .field_quote_details{margin-left:.5rem}.paragraph--type--quote .field_quote_details:before{content:'–';display:inline-block;margin-right:.5rem}.paragraph--type--offers{background-color:#F5F3ED}@media only screen and (min-width: 768px){.paragraph--type--offers{padding:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--offers{padding:calc(var(--grid-size) * .5)}}.paragraph--type--offers>.curve{display:block;width:102%;height:auto}.paragraph--type--offers>.curve--after{background-color:#F5F3ED;-webkit-transform:rotate(-180deg) scaleX(-1);transform:rotate(-180deg) scaleX(-1)}.paragraph--type--offers>div header{padding-bottom:0}.paragraph--type--offers>div header p+*{margin-top:calc(var(--grid-size)  * .5)}.paragraph--type--offers>div header h2{color:#B32B23;max-width:75%;margin-top:0}.paragraph--type--offers>div header .field_content{margin-top:calc(var(--grid-size)  * 1)}.paragraph--type--offers>div .field_offers_wrapper{padding:calc(var(--grid-size)  * 2) 0;margin:0 calc(var(--grid-size) / -2)}@media only screen and (min-width: 768px){.paragraph--type--offers>div .field_offers_wrapper{display:flex;padding-bottom:0}.paragraph--type--offers>div .field_offers_wrapper[data-columns="2"]>div:not(.slider){width:50%}.paragraph--type--offers>div .field_offers_wrapper[data-columns="3"]>div:not(.slider){width:33.33%}.paragraph--type--offers>div .field_offers_wrapper[data-columns="4"]>div:not(.slider){width:25%}}.paragraph--type--offers>div .field_offers_wrapper article a{transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear;-webkit-transform:translateY(0);transform:translateY(0);display:inline-block}.paragraph--type--offers>div .field_offers_wrapper article a:hover{color:inherit;-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (max-width: 767px){.paragraph--type--offers>div{padding:calc(var(--grid-size)  * 2) 5vw;padding-bottom:0}}@media only screen and (max-width: 767px){.paragraph--type--offers>div .field_offers:not(:first-of-type){margin-top:5vw}}.paragraph--type--offers>div .field_offers article{height:100%;border-radius:var(--font-size-base);color:white;padding:var(--grid-size);margin:0 calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--offers>div .field_offers article{padding:5vw}}.paragraph--type--offers>div .field_offers article h2+*{margin-top:calc(var(--grid-size)  * 1.5)}.paragraph--type--offers>div .field_offers article h2 a{text-decoration:none;color:inherit}.paragraph--type--offers .slider{overflow-y:hidden;overflow-x:hidden}.paragraph--type--offers .slider .field_offers.field_offers{margin-top:0}.paragraph--type--offers .slider__control{border-color:#fff;background-color:#fff;box-shadow:0 0 50px rgba(38,38,38,0.75);margin-top:15px;top:50%;bottom:auto}.paragraph--type--offers .slider__control--next{right:calc(var(--grid-size) * .5)}@media only screen and (min-width: 1000px){.paragraph--type--reasons{padding:0 var(--grid-size) 0;display:flex;justify-content:space-between;flex-wrap:wrap}}@media only screen and (max-width: 999px){.paragraph--type--reasons{padding:0 5vw 0}}.paragraph--type--reasons header{flex:1 0 100%}.paragraph--type--reasons header *{color:#B32B23;max-width:660px}@media only screen and (min-width: 1000px){.paragraph--type--reasons .field_reasons{margin-top:calc(var(--grid-size)  * 2);margin-left:auto;margin-right:auto}}@media only screen and (max-width: 999px){.paragraph--type--reasons .field_reasons{margin-top:5vw}}@media only screen and (min-width: 1000px){.paragraph--type--reasons .field_reasons:nth-of-type(2n+1){padding-right:var(--grid-size)}.paragraph--type--reasons .field_reasons:nth-of-type(2n+2){padding-left:var(--grid-size)}.paragraph--type--reasons .field_reasons:not(:nth-of-type(4)):not(:nth-of-type(3)){width:50%}.paragraph--type--reasons .field_reasons:nth-of-type(2){margin-top:0}.paragraph--type--reasons .field_reasons:nth-of-type(3){width:40%}.paragraph--type--reasons .field_reasons:nth-of-type(4){width:60%}.paragraph--type--reasons .field_reasons:nth-of-type(5){align-items:center}.paragraph--type--reasons .field_reasons:nth-of-type(5) .field_reason_image{padding-right:calc(var(--grid-size)  * 3)}.paragraph--type--reasons .field_reasons:nth-of-type(5) .field_reason_image img{max-width:200px}.paragraph--type--reasons .field_reasons:nth-of-type(5) .field_reason_description{min-width:400px}}@media only screen and (min-width: 1000px) and (max-width: 1279px){.paragraph--type--reasons .field_reasons:nth-of-type(5){margin-left:5%}}.paragraph--type--reason{display:flex;justify-content:space-between}@media only screen and (max-width: 374px){.paragraph--type--reason{flex-direction:column}}@media only screen and (min-width: 1000px){.paragraph--type--reason{align-items:flex-end}}.paragraph--type--reason .field_reason_image{padding-right:var(--grid-size)}.paragraph--type--reason .field_reason_image img:not([src*="gif"]){display:block;height:auto}@media only screen and (min-width: 1000px){.paragraph--type--reason .field_reason_image img:not([src*="gif"]){max-width:160px}}@media only screen and (max-width: 999px){.paragraph--type--reason .field_reason_image img:not([src*="gif"]){max-width:120px}}.paragraph--type--reason .field_reason_image img[src*=".gif"]{display:none}.paragraph--type--slick-slider{padding:var(--grid-size) 0 var(--grid-size)}.paragraph--type--slick-slider>.row{margin:0 calc(var(--grid-size) / 2)}.paragraph--type--slick-slider .slick-track{display:flex;align-items:flex-end;padding-top:50px}@media only screen and (max-width: 767px){.paragraph--type--slick-slider .slick-track{padding-top:0}}.paragraph--type--slick-slider .center-mode .slick-slide{opacity:.7;-webkit-transform:scale(0.9) translateY(2.5%);transform:scale(0.9) translateY(2.5%);transition:all .4s ease 0s;padding:0 30px}@media only screen and (max-width: 767px){.paragraph--type--slick-slider .center-mode .slick-slide{padding:0 15px}}@media only screen and (max-width: 573px){.paragraph--type--slick-slider .center-mode .slick-slide{padding:0}}.paragraph--type--slick-slider .center-mode .slick-slide.slick-center{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before{display:table;content:''}.slick-track:after{display:table;content:'';clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.slider-btn--prev,.slider-btn--next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;color:transparent;border:none;outline:none;background:transparent;z-index:10}.slider-btn--prev{left:50px}.slider-btn--prev:hover,.slider-btn--prev:focus{color:transparent;outline:none;background:transparent}.slider-btn--next{right:50px}.slider-btn--next:hover,.slider-btn--next:focus{color:transparent;outline:none;background:transparent}.slider-btn--prev:hover:before,.slider-btn--prev:focus:before{opacity:1}.slider-btn--next:hover:before,.slider-btn--next:focus:before{opacity:1}.slider-btn--prev.slick-disabled:before,.slider-btn--next.slick-disabled:before{opacity:.25}.slider-btn--prev:before,.slider-btn--next:before{color:#B32B23;font-size:40px;font-weight:bold;line-height:1;top:50%;position:absolute;opacity:.75;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slider-btn--prev,.slider-btn--next{-webkit-transform:scale(1.3);transform:scale(1.3)}[dir='rtl'] .slider-btn--prev{right:-25px;left:auto}.slider-btn--prev:before{content:'';background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg) no-repeat center;-webkit-transform:rotate(180deg);transform:rotate(180deg);display:block;width:30px;height:30px;position:relative}[dir='rtl'] .slider-btn--prev:before{content:'';background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg) no-repeat center;display:block;width:30px;height:30px;position:relative}[dir='rtl'] .slider-btn--next{right:auto;left:-25px}.slider-btn--next:before{content:'';background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg) no-repeat center;display:block;width:30px;height:30px;position:relative}[dir='rtl'] .slider-btn--next:before{content:'';background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg) no-repeat center;-webkit-transform:rotate(180deg);transform:rotate(180deg);display:block;width:30px;height:30px;position:relative}.slick-dotted.slick-slider{margin-bottom:30px}.slider-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slider-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer;font-size:30px}.slider-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;border:0;outline:none;background:transparent}.slider-dots li button:hover,.slider-dots li button:focus{outline:none}.slider-dots li button:hover:before,.slider-dots li button:focus:before{opacity:1}.slider-dots li button:before{font-family:'slick';font-size:30px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:#B32B23;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slider-dots li.slick-active button:before{opacity:.75;font-size:50px;color:#B32B23}.center-mode .slider-dots li button::before{color:inherit}.center-mode .slider-btn--prev,.center-mode .slider-btn--next{top:auto;bottom:12%}@media only screen and (max-width: 1298px){.center-mode .slider-btn--prev,.center-mode .slider-btn--next{bottom:16%}}@media only screen and (max-width: 1023px){.center-mode .slider-btn--prev,.center-mode .slider-btn--next{bottom:17%}}@media only screen and (max-width: 767px){.center-mode .slider-btn--prev,.center-mode .slider-btn--next{bottom:21%}}@media only screen and (max-width: 573px){.center-mode .slider-btn--prev,.center-mode .slider-btn--next{bottom:27%}}.center-mode .slider-btn--prev:before,.center-mode .slider-btn--next:before{color:#ffffff}.center-mode .slider-btn--prev{left:25%}@media only screen and (max-width: 1298px){.center-mode .slider-btn--prev{left:22%}}@media only screen and (max-width: 1023px){.center-mode .slider-btn--prev{left:20%}}@media only screen and (max-width: 767px){.center-mode .slider-btn--prev{left:10%}}@media only screen and (max-width: 573px){.center-mode .slider-btn--prev{left:0%}}.center-mode .slider-btn--next{right:25%}@media only screen and (max-width: 1298px){.center-mode .slider-btn--next{right:22%}}@media only screen and (max-width: 1023px){.center-mode .slider-btn--next{right:20%}}@media only screen and (max-width: 767px){.center-mode .slider-btn--next{right:10%}}@media only screen and (max-width: 573px){.center-mode .slider-btn--next{right:5%}}@media only screen and (min-width: 768px){.paragraph--type--accordion{padding:calc(var(--grid-size)  * 4) var(--grid-size) 0}}@media only screen and (max-width: 767px){.paragraph--type--accordion{padding:calc(var(--grid-size)  * 4) calc(var(--grid-size) * .5) 0}}.paragraph--type--accordion.paragraph--type--accordion{padding-top:0}.paragraph--type--accordion .field_headline{color:#B32B23;max-width:660px}.paragraph--type--accordion .field_headline+*{margin-top:calc(var(--grid-size))}.paragraph--type--accordion .field_accordion_items{border-top:dotted 2px #D8D8D8}.paragraph--type--accordion .field_accordion_items:last-of-type{border-bottom:dotted 2px #D8D8D8}.paragraph--type--accordion-item{position:relative}.paragraph--type--accordion-item .field_accordion_headline{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--accordion-item .field_accordion_headline{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--accordion-item .field_accordion_headline{font-size:20px}}@media only screen and (min-width: 768px){.paragraph--type--accordion-item .field_accordion_headline{padding:calc(var(--grid-size) * .5) 100px calc(var(--grid-size) * .5) 0;cursor:pointer}}@media only screen and (max-width: 767px){.paragraph--type--accordion-item .field_accordion_headline{padding:calc(var(--grid-size) * .25) 50px calc(var(--grid-size) * .25) 0}}.paragraph--type--accordion-item .field_accordion_headline:after{content:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg);position:absolute;right:5px;top:50%;width:12px;height:12px;margin-top:-6px;-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:center;transform-origin:center}.field_accordion_items--expanded .paragraph--type--accordion-item .field_accordion_headline:after{top:calc(var(--grid-size)  * .5);-webkit-transform:rotate(90deg) scaleX(-1);transform:rotate(90deg) scaleX(-1)}.paragraph--type--accordion-item .field_accordion_content>.paragraph{padding-left:0;padding-right:0}.paragraph--type--accordion-item .field_accordion_content:after{content:'';display:block;height:var(--grid-size)}.paragraph--type--teaser{background-color:#01A28D;color:white;border-radius:var(--font-size-base);box-shadow:0 var(--grid-size) 100px rgba(38,38,38,0.25);overflow:hidden}@media only screen and (min-width: 768px){.paragraph--type--teaser{margin:calc(var(--grid-size)  * 4) var(--grid-size) 0;padding:var(--grid-size);position:relative}.paragraph--type--teaser:last-child{margin-bottom:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--teaser{margin:calc(var(--grid-size)  * 4) 5vw 0;padding:calc(var(--grid-size)  * .5)}}.paragraph--type--teaser .field_headline+*{margin-top:calc(var(--grid-size)  * .5)}.paragraph--type--teaser .field_link,.paragraph--type--teaser .field_second_link{margin-top:var(--grid-size)}.paragraph--type--teaser .field_link a,.paragraph--type--teaser .field_second_link a{transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear;-webkit-transform:translateY(0);transform:translateY(0);display:inline-block}.paragraph--type--teaser .field_link a:hover,.paragraph--type--teaser .field_second_link a:hover{-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (min-width: 768px){.paragraph--type--teaser .field_link,.paragraph--type--teaser .field_second_link{display:inline-block;vertical-align:middle;margin-right:calc(var(--grid-size) * .5)}}@media only screen and (min-width: 1400px){.paragraph--type--teaser .field_link a{min-width:275px}}@media only screen and (min-width: 1400px){.paragraph--type--teaser .field_second_link a{width:275px}}.paragraph--type--teaser[style*="color:#FFF"] .field_link a[href$=".pdf"],.paragraph--type--teaser[style*="color:#FFF"] .field_second_link a[href$=".pdf"]{color:inherit}.paragraph--type--teaser[style*="color:#FFF"] .field_link a[href$=".pdf"]:before,.paragraph--type--teaser[style*="color:#FFF"] .field_second_link a[href$=".pdf"]:before{content:url(/themes/frankfurter_verband_theme/dist/fonts/download--white.svg)}@media only screen and (max-width: 374px){.paragraph--type--teaser[style*="color:#FFF"] .field_link a[href$=".pdf"]:before,.paragraph--type--teaser[style*="color:#FFF"] .field_second_link a[href$=".pdf"]:before{display:initial}}.paragraph--type--teaser.-has-background-image{position:relative;z-index:1}@media only screen and (min-width: 1024px){.paragraph--type--teaser.-has-background-image{padding:0;display:flex}}@media only screen and (max-width: 1023px){.paragraph--type--teaser.-has-background-image{padding:calc(var(--grid-size) * 6) 0 0 0}}.paragraph--type--teaser.-has-background-image>div:first-child{background-color:inherit;z-index:1;position:relative}@media only screen and (min-width: 1024px){.paragraph--type--teaser.-has-background-image>div:first-child{padding:var(--grid-size);width:60%;-webkit-clip-path:ellipse(100% 142% at 0% 32%);clip-path:ellipse(100% 142% at 0% 32%)}}@media only screen and (max-width: 1023px){.paragraph--type--teaser.-has-background-image>div:first-child{padding:calc(var(--grid-size) * 1.5) calc(var(--grid-size) * .5);-webkit-clip-path:ellipse(100% 50% at 40% 50%);clip-path:ellipse(100% 50% at 40% 50%)}}.paragraph--type--teaser.-has-background-image .field_background_image{line-height:0}@media only screen and (min-width: 1024px){.paragraph--type--teaser.-has-background-image .field_background_image{position:relative;left:-100px;margin-right:-100px;width:calc(40% + 100px)}}@media only screen and (max-width: 1023px){.paragraph--type--teaser.-has-background-image .field_background_image{position:absolute;left:0;top:0;width:100%;min-height:calc(var(--grid-size) * 8)}}.paragraph--type--teaser.-has-background-image .field_background_image .field_media_image,.paragraph--type--teaser.-has-background-image .field_background_image img{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%;line-height:0;display:block}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--teaser.-has-background-image .field_background_image .field_media_image,.paragraph--type--teaser.-has-background-image .field_background_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}@media only screen and (min-width: 768px){.paragraph--type--teaser>div:last-of-type:not(.field_background_image){width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8));max-width:none}}@media only screen and (min-width: 1440px){.paragraph--type--teaser>div:last-of-type:not(.field_background_image){width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8))}}.paragraph--type--teaser-fullwidth{background-color:#01A28D;color:white;box-shadow:0 0 50px rgba(38,38,38,0.5);overflow:hidden;margin:0 0 100px}@media only screen and (min-width: 768px){.paragraph--type--teaser-fullwidth{padding:var(--grid-size);position:relative}.paragraph--type--teaser-fullwidth:last-child{margin-bottom:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--teaser-fullwidth{padding:calc(var(--grid-size)  * .5)}}.paragraph--type--teaser-fullwidth.-has-background-image{position:relative;z-index:1}@media only screen and (min-width: 1024px){.paragraph--type--teaser-fullwidth.-has-background-image{padding:0;display:flex}}@media only screen and (max-width: 1023px){.paragraph--type--teaser-fullwidth.-has-background-image{padding:0}}.paragraph--type--teaser-fullwidth.-has-background-image>div:first-child{background-color:inherit;z-index:1;position:relative}.paragraph--type--teaser-fullwidth.-has-background-image>div:first-child h2{color:inherit}@media only screen and (min-width: 1024px){.paragraph--type--teaser-fullwidth.-has-background-image>div:first-child{padding:calc(var(--grid-size) * 2);width:50%}}@media only screen and (max-width: 1023px){.paragraph--type--teaser-fullwidth.-has-background-image>div:first-child{padding:calc(var(--grid-size) * 1.5) var(--grid-size)}}.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image{line-height:0}@media only screen and (min-width: 1024px){.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image{position:relative;width:50%}}@media only screen and (max-width: 1023px){.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image{position:relative;left:0;top:0;width:100%;min-height:calc(var(--grid-size) * 8)}}.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image .field_media_image,.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image img{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%;-o-object-position:right bottom;object-position:right bottom;line-height:0;display:block}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image .field_media_image,.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}@media only screen and (max-width: 1023px){.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image .field_media_image,.paragraph--type--teaser-fullwidth.-has-background-image .field_background_image img{position:relative;height:auto;min-height:0}}@media only screen and (min-width: 768px){.paragraph--type--teaser-fullwidth>div:last-of-type:not(.field_background_image){width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8));max-width:none}}@media only screen and (min-width: 1440px){.paragraph--type--teaser-fullwidth>div:last-of-type:not(.field_background_image){width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8))}}.paragraph--type--teaser--left-right.row{margin:0 var(--bs-gutter-x)}@media only screen and (max-width: 767px){.paragraph--type--teaser--left-right.row{margin:0}}.paragraph--type--teaser--left-right.row>div[class*=col-]{--bs-gutter-x: var(--grid-size) !important}@media only screen and (max-width: 767px){.paragraph--type--teaser--left-right.row>div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)* 2) !important}}@media only screen and (max-width: 767px){.paragraph--type--teaser--left-right.row .col-md-6{margin-bottom:30px}}.paragraph--type--teaser--left-right.row .teaser-item{height:100%;padding:25px;border-radius:33.33333px;box-shadow:0px 30px 50px rgba(0,0,0,0.243137);display:flex;flex-direction:column}@media only screen and (max-width: 1023px){.paragraph--type--teaser--left-right.row .teaser-item{border-radius:calc(50px / 2);padding:calc(var(--grid-size)/2)}}@media only screen and (max-width: 767px){.paragraph--type--teaser--left-right.row .teaser-item{margin-bottom:var(--grid-size)}}.paragraph--type--teaser--left-right.row .teaser-item .teaser-image img{border-radius:calc(50px / 3)}.paragraph--type--teaser--left-right.row .teaser-item .teaser-content{position:relative;padding:15px 16.66667px 100px;display:flex;flex-direction:column;height:100%}@media only screen and (max-width: 1023px){.paragraph--type--teaser--left-right.row .teaser-item .teaser-content{padding-bottom:0}}.paragraph--type--teaser--left-right.row .teaser-item .teaser-content p:has(a){position:absolute;bottom:0}.paragraph--type--teaser--left-right.row .teaser-item .teaser-content p:has(a):nth-child(4){right:0}@media only screen and (max-width: 1023px){.paragraph--type--teaser--left-right.row .teaser-item .teaser-content p:has(a){position:relative;left:0;text-align:center}.paragraph--type--teaser--left-right.row .teaser-item .teaser-content p:has(a):nth-child(4){right:auto}}.paragraph--type--teaser--left-right.row .teaser-item .teaser-content a.button{box-shadow:none}.paragraph--type--job-offers{padding:var(--grid-size) 0}.paragraph--type--job-offers .row{margin:0;padding-left:calc(var(--grid-size)/ 2);padding-right:calc(var(--grid-size)/ 2)}@media only screen and (max-width: 767px){.paragraph--type--job-offers .row{padding-left:calc(var(--grid-size) / 2);padding-right:calc(var(--grid-size) / 2)}}.paragraph--type--job-offers .row>div[class*=col-]{--bs-gutter-x: calc(var(--grid-size)) !important;margin:calc(var(--grid-size) / 2) 0}@media only screen and (max-width: 767px){.paragraph--type--job-offers .row>div[class*=col-]{--bs-gutter-x: var(--grid-size) !important;margin:calc(var(--grid-size) / 2) 0}}@media only screen and (max-width: 767px){.paragraph--type--job-offers .job-offer-items{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none}.paragraph--type--job-offers .job-offer-items>div[class*=col-]{width:70vw}}.paragraph--type--job-offers .job-offer-text{margin-bottom:0 !important}.paragraph--type--job-offers .job-offer-text .button{margin-bottom:var(--grid-size);box-shadow:0px 3px 30px rgba(0,0,0,0.160784)}.paragraph--type--job-offers .job-offer-item{background-color:#ffffff;border-radius:var(--font-size-base);box-shadow:0px 3px 30px rgba(0,0,0,0.160784);padding:calc(var(--grid-size) / 2);height:calc(100% - (var(--grid-size) / 2));margin-bottom:calc(var(--grid-size) / 2);-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;hyphenate-limit-chars:10 4 4;display:flex;flex-direction:column;justify-content:space-between}@media only screen and (min-width: 768px){.paragraph--type--seals{margin:calc(var(--grid-size) * 4) var(--grid-size) 0}}@media only screen and (max-width: 767px){.paragraph--type--seals{margin:calc(var(--grid-size) * 2) calc(var(--grid-size) * .5) 0}}.paragraph--type--seals .field_headline{color:#B32B23;max-width:480px}.paragraph--type--seals .field_headline+*{margin-top:calc(var(--grid-size) * 2)}.paragraph--type--seals .field_seals+.field_seals{margin-top:calc(var(--grid-size) * 1)}.paragraph--type--seal{display:flex;position:relative}@media only screen and (min-width: 900px){.paragraph--type--seal{align-items:center}}@media only screen and (max-width: 767px){.paragraph--type--seal{padding-bottom:50px;justify-content:space-between}}.paragraph--type--seal>div:first-child{max-width:50%}.paragraph--type--seal .field_download{margin-top:4px}.paragraph--type--seal .field_media_image img{position:relative;display:block;height:auto}@media only screen and (min-width: 768px){.paragraph--type--seal .field_media_image img{width:150px;margin-left:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--seal .field_media_image img{width:120px}}.paragraph--type--grid-navigation{display:flex}@media only screen and (min-width: 1120px){.paragraph--type--grid-navigation{padding:0 var(--grid-size);max-width:71.5%;flex-wrap:wrap}}@media only screen and (min-width: 768px) and (max-width: 1118px){.paragraph--type--grid-navigation{padding:0 var(--grid-size);max-width:90%;flex-wrap:wrap}}@media only screen and (max-width: 767px){.paragraph--type--grid-navigation{padding:0 5vw;width:100%;overflow-x:scroll}}.paragraph--type--grid-navigation.paragraph--type--grid-navigation{position:relative;z-index:10}@media only screen and (min-width: 1024px){.paragraph--type--grid-navigation.paragraph--type--grid-navigation{margin-top:calc(var(--grid-size) * -3)}}@media only screen and (max-width: 1023px){.paragraph--type--grid-navigation.paragraph--type--grid-navigation{margin-top:calc(var(--grid-size) * -.5)}}.paragraph--type--grid-navigation .field_link{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15;transition:box-shadow 200ms ease-out, -webkit-transform 200ms ease-out;transition:transform 200ms ease-out, box-shadow 200ms ease-out;transition:transform 200ms ease-out, box-shadow 200ms ease-out, -webkit-transform 200ms ease-out;width:165px;height:155px;box-shadow:0 12px 21px 0 rgba(0,0,0,0.16);margin-right:calc(var(--grid-size)  / 2);margin-bottom:calc(var(--grid-size)  / 2);border-radius:20px;padding:20px;position:relative;background-color:#fff}@media only screen and (max-width: 767px){.paragraph--type--grid-navigation .field_link{font-size:calc(var(--font-size-base) * 1 * .8)}}@media only screen and (max-width: 767px){.paragraph--type--grid-navigation .field_link{min-width:140px !important}}.paragraph--type--grid-navigation .field_link:hover{-webkit-transform:translateY(-10px);transform:translateY(-10px);box-shadow:0 12px 21px 0 rgba(0,0,0,0.3)}@media only screen and (min-width: 1441px){.paragraph--type--grid-navigation .field_link:nth-child(6){margin-left:var(--grid-size)}}@media only screen and (min-width: 936px) and (max-width: 1439px){.paragraph--type--grid-navigation .field_link:nth-child(5){margin-left:var(--grid-size)}}@media only screen and (min-width: 768px) and (max-width: 934px){.paragraph--type--grid-navigation .field_link:nth-child(4){margin-left:var(--grid-size)}}.paragraph--type--grid-navigation .field_link:after{position:absolute;content:'';bottom:calc(var(--grid-size) * .5);right:calc(var(--grid-size) * .5);height:50px;width:50px;background:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg) no-repeat center;border:solid 2px #262626;background-size:auto var(--font-size-base);border-radius:100%}.paragraph--type--grid-navigation .field_link a{z-index:2;text-decoration:none !important;font-size:20px !important}.paragraph--type--grid-navigation .field_link a:after{position:absolute;z-index:2;top:0;right:0;bottom:0;left:0;content:" ";display:block}.paragraph--type--row .paragraph{padding:0}@media only screen and (min-width: 768px){.paragraph--type--row{display:flex}}@media only screen and (min-width: 768px){.paragraph--type--row>*:nth-of-type(1n+1){width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 5 + (var(--grid-size) * 4));max-width:none}}@media only screen and (min-width: 1440px){.paragraph--type--row>*:nth-of-type(1n+1){width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 5 + (var(--grid-size) * 4))}}@media only screen and (min-width: 768px){.paragraph--type--row>*:nth-of-type(1n+1){margin-right:var(--grid-size)}}.paragraph--type--row>*:nth-of-type(1n+1) img{max-width:none;border-radius:var(--font-size-base)}@media only screen and (min-width: 768px){.paragraph--type--row>*:nth-of-type(1n+1) img{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 5 + (var(--grid-size) * 4));max-width:none}}@media only screen and (min-width: 1440px){.paragraph--type--row>*:nth-of-type(1n+1) img{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 5 + (var(--grid-size) * 4))}}@media only screen and (max-width: 767px){.paragraph--type--row>*:nth-of-type(1n+1) img{width:100%}}@media only screen and (max-width: 767px){.paragraph--type--row>*:not(:first-of-type){margin-top:var(--grid-size)}}.paragraph--type--tabs{position:relative}@media only screen and (min-width: 768px){.paragraph--type--tabs .main{display:flex}}@media only screen and (max-width: 767px){.paragraph--type--tabs{padding:0 calc(var(--grid-size) * .5)}}.paragraph--type--tabs header .field_headline{width:100%;margin-bottom:0.5em}.paragraph--type--tabs header .field_content{width:100%;margin-bottom:1.5em}.paragraph--type--tabs__navigation{overflow-x:hidden}@media only screen and (min-width: 1280px) and (min-width: 768px){.paragraph--type--tabs__navigation{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 2 + (var(--grid-size) * 1));max-width:none}}@media only screen and (min-width: 1280px) and (min-width: 1440px){.paragraph--type--tabs__navigation{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 2 + (var(--grid-size) * 1))}}@media only screen and (min-width: 1024px) and (max-width: 1279px) and (min-width: 768px){.paragraph--type--tabs__navigation{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 3 + (var(--grid-size) * 2));max-width:none}}@media only screen and (min-width: 1024px) and (max-width: 1279px) and (min-width: 1440px){.paragraph--type--tabs__navigation{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 3 + (var(--grid-size) * 2))}}@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 768px){.paragraph--type--tabs__navigation{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 4 + (var(--grid-size) * 3));max-width:none}}@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 1440px){.paragraph--type--tabs__navigation{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 4 + (var(--grid-size) * 3))}}@media only screen and (max-width: 767px){.paragraph--type--tabs__navigation{overflow-x:auto;margin:0}}.paragraph--type--tabs__navigation__reveal{display:none !important}@media only screen and (min-width: 768px){.paragraph--type--tabs__navigation__slide{width:auto !important}}@media only screen and (max-width: 767px){.paragraph--type--tabs__navigation__slide{transition:-webkit-transform 200ms ease-out;transition:transform 200ms ease-out;transition:transform 200ms ease-out, -webkit-transform 200ms ease-out;position:relative;display:flex;-webkit-transform:translateX(var(--x));transform:translateX(var(--x))}}.paragraph--type--tabs__navigation .field_headline{cursor:pointer;position:relative;max-width:calc(50vw - var(--grid-size))}.paragraph--type--tabs__navigation .field_headline span{display:block;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;overflow-x:hidden}@media only screen and (min-width: 768px){.paragraph--type--tabs__navigation .field_headline{padding:1em 0 1em calc(var(--grid-size) * .5)}}@media only screen and (max-width: 767px){.paragraph--type--tabs__navigation .field_headline{padding:1em 0;min-width:150px;text-align:center}.paragraph--type--tabs__navigation .field_headline:not(:last-of-type){margin-right:var(--grid-size)}}.paragraph--type--tabs__navigation .field_headline.field_headline--active{color:#B32B23}.paragraph--type--tabs__navigation .field_headline:not(.field_headline--active){color:#979797}.paragraph--type--tabs__navigation .field_headline:before{position:absolute;content:'';background:transparent;border-radius:var(--font-size-base)}.paragraph--type--tabs__navigation .field_headline--active:before,.paragraph--type--tabs__navigation .field_headline:hover:before{background:#B32B23}@media only screen and (min-width: 768px){.paragraph--type--tabs__navigation .field_headline--active:before,.paragraph--type--tabs__navigation .field_headline:hover:before{left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:7px;height:var(--font-size-base);margin-top:1px;top:50%}}@media only screen and (max-width: 767px){.paragraph--type--tabs__navigation .field_headline--active:before,.paragraph--type--tabs__navigation .field_headline:hover:before{left:50%;bottom:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);height:7px;width:var(--font-size-base)}}@media only screen and (min-width: 768px){.paragraph--type--tabs .field_tab{margin-left:var(--grid-size)}}@media only screen and (min-width: 1280px) and (min-width: 768px){.paragraph--type--tabs .field_tab{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 10 + (var(--grid-size) * 9));max-width:none}}@media only screen and (min-width: 1280px) and (min-width: 1440px){.paragraph--type--tabs .field_tab{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 10 + (var(--grid-size) * 9))}}@media only screen and (min-width: 1024px) and (max-width: 1279px) and (min-width: 768px){.paragraph--type--tabs .field_tab{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8));max-width:none}}@media only screen and (min-width: 1024px) and (max-width: 1279px) and (min-width: 1440px){.paragraph--type--tabs .field_tab{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8))}}@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 768px){.paragraph--type--tabs .field_tab{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 8 + (var(--grid-size) * 7));max-width:none}}@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 1440px){.paragraph--type--tabs .field_tab{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 8 + (var(--grid-size) * 7))}}.paragraph--type--tabs .field_tab .paragraph--type--tab{display:flex;flex-direction:row-reverse;background-color:#F5F3ED;border-radius:20px;margin-top:18px}@media only screen and (max-width: 899px){.paragraph--type--tabs .field_tab .paragraph--type--tab{flex-direction:column-reverse}}.paragraph--type--tabs .field_tab .paragraph--type--tab>*{width:100%}@media (min-width: 900px) and (max-width: 1099px){.paragraph--type--tabs .field_tab .paragraph--type--tab>*:nth-child(3){display:none}}.paragraph--type--tabs .field_tab .paragraph--type--tab>* .field_media_image{line-height:0}.paragraph--type--tabs .field_tab .field_headline{display:none}.paragraph--type--tabs .field_tab:not(.field_tab--active){display:none}.paragraph--type--tabs .field_tab .paragraph--type--image{height:100%}.paragraph--type--tabs .field_tab .paragraph--type--image .field_image_image{height:100%}.paragraph--type--tabs .field_tab .paragraph--type--image .field_image_image .field_media_image{height:100%;position:relative;overflow:hidden}.paragraph--type--tabs .field_tab .paragraph--type--image .field_image_image .field_media_image img{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%;border-radius:var(--font-size-base);width:100%;height:auto}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--tabs .field_tab .paragraph--type--image .field_image_image .field_media_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}.paragraph--type--tabs .field_tab .paragraph--type--text{padding-top:var(--grid-size);padding-bottom:var(--grid-size)}.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h1,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h2,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h3,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h4,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h5,.paragraph--type--tabs .field_tab .field_tab_content+.field_tab_content .paragraph--type--text h6{margin-bottom:calc(var(--grid-size) * .5)}.paragraph--type--tabs__slide-navigation{display:none}.paragraph--type--columns{position:relative}@media only screen and (min-width: 768px){.paragraph--type--columns{padding:var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--columns{padding:calc(var(--grid-size) * .5)}}.paragraph--type--columns>h3{margin-bottom:15px}@media only screen and (min-width: 768px) and (min-width: 768px){.paragraph--type--columns>h3{width:calc(((100vw - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8));max-width:none}}@media only screen and (min-width: 768px) and (min-width: 1440px){.paragraph--type--columns>h3{width:calc(((1440px - (var(--grid-size) * 11)) / 12) * 9 + (var(--grid-size) * 8))}}.paragraph--type--columns p{font-size:24px}@media only screen and (min-width: 1024px){.paragraph--type--columns .slider{width:calc(100% + var(--grid-size));margin-left:calc(-.5 * var(--grid-size))}}@media only screen and (max-width: 1023px){.paragraph--type--columns .slider{width:calc(100% + var(--grid-size) * .5);margin-left:calc(-.25 * var(--grid-size))}}.paragraph--type--columns .slider__wrapper{margin:var(--grid-size) 0 calc(var(--grid-size) * 2)}.paragraph--type--columns .slider__wrapper .field_columns{position:relative}@media only screen and (min-width: 1024px){.paragraph--type--columns .slider__wrapper .field_columns{padding:calc(var(--grid-size) * .5)}}@media only screen and (max-width: 1023px){.paragraph--type--columns .slider__wrapper .field_columns{padding:calc(var(--grid-size) * .25)}}.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column{background-color:#fff;border-radius:var(--font-size-base);color:#262626;padding:calc(var(--grid-size) * .5);height:100%}.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column img{border-radius:calc(var(--grid-size) * .25);margin-bottom:calc(var(--grid-size) * .25)}.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_headline{margin-bottom:calc(var(--grid-size) * 1);color:#B32B23}.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_column_content p{overflow-x:hidden}.paragraph--type--columns .slider__wrapper .field_columns .paragraph--type--column .field_column_content p a{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;display:inline-block}.paragraph--type--columns .slider__control{border:none;margin-top:15px;top:90%;bottom:auto}.paragraph--type--columns .slider__control--next{right:15%}.paragraph--type--columns .slider__control--previous{right:20%}.paragraph--type--columns.noMarginRight .slider{width:calc(100% + (var(--grid-size) * 2))}.paragraph--type--columns.noMarginRight .slider .slider__wrapper .field_columns:last-child{margin-right:calc(var(--grid-size) / 2)}@media only screen and (min-width: 1024px){article[role="article"]>div>.paragraph--type--text{margin-left:calc(var(--grid-size) * 3);margin-right:calc(var(--grid-size) * 6)}}.paragraph--type--curved-teaser{background-color:#f5f3ed;padding-bottom:var(--grid-size)}@media only screen and (min-width: 768px){.paragraph--type--curved-teaser{display:-ms-grid;display:grid;-ms-grid-columns:1fr calc(var(--grid-size) * 2) 1fr calc(var(--grid-size) * 2) 1fr;grid-template-columns:1fr 1fr 1fr;-ms-grid-rows:1fr 0 1fr 0 1fr;grid-template-rows:1fr 1fr 1fr;grid-template-areas:"Image Headline Headline" "Image Content Content" "Image Links Links";padding-top:calc(var(--grid-size) * 2);gap:0 calc(var(--grid-size) * 2)}}@media only screen and (max-width: 767px){.paragraph--type--curved-teaser{padding-top:var(--grid-size);gap:var(--grid-size)}}.paragraph--type--curved-teaser .field_background_image{grid-area:Image;text-align:center}.paragraph--type--curved-teaser .field_background_image .field_media_image{position:relative;height:0;padding-top:100%;border-radius:100%;overflow:hidden}.paragraph--type--curved-teaser .field_background_image .field_media_image img{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--curved-teaser .field_background_image .field_media_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}.paragraph--type--curved-teaser .field_headline{grid-area:Headline;color:#B32B23}.paragraph--type--curved-teaser .field_headline+*{margin-top:1em}@media only screen and (max-width: 767px){.paragraph--type--curved-teaser .field_headline{margin:var(--grid-size) 0}}.paragraph--type--curved-teaser .field_content{grid-area:Content}.paragraph--type--curved-teaser .fields_link_download{grid-area:Links;display:flex;justify-content:space-between;margin-top:calc(var(--grid-size) * .5);flex-wrap:wrap}.paragraph--type--curved-teaser .fields_link_download a{color:#262626}@media only screen and (min-width: 768px){.paragraph--type--curved-teaser .fields_link_download a{min-width:0 !important}}@media only screen and (max-width: 767px){.paragraph--type--curved-teaser .fields_link_download a{margin-top:calc(var(--grid-size) * .5)}}@media only screen and (min-width: 768px){.paragraph--type--curved-teaser .fields_link_download .field_link:not(:last-child){margin-right:calc(var(--grid-size) * .5);margin-bottom:calc(var(--grid-size) * .25)}.paragraph--type--curved-teaser .fields_link_download .field_link+.field_download{margin-left:auto}}.paragraph--type--all-centers-map{gap:var(--grid-size);margin-top:0 !important}@media only screen and (min-width: 800px){.paragraph--type--all-centers-map{display:-ms-grid;display:grid;-ms-grid-rows:auto auto;grid-template-rows:auto auto;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-template-areas:"Headline Content" "Map Map"}.paragraph--type--all-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--all-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}}.paragraph--type--all-centers-map .field_headline{grid-area:Headline;padding:0 var(--grid-size);color:#B32B23}@media only screen and (max-width: 799px){.paragraph--type--all-centers-map .field_headline{padding:calc(var(--grid-size) / 2) var(--grid-size)}}.paragraph--type--all-centers-map .field_content{grid-area:Content;padding:0 var(--grid-size)}@media only screen and (max-width: 799px){.paragraph--type--all-centers-map .field_content{padding:0 var(--grid-size) calc(var(--grid-size) / 2)}}.paragraph--type--all-centers-map .all-centers-map{position:relative;grid-area:Map;margin-bottom:50px}.paragraph--type--all-centers-map .all-centers-map__map{position:relative;z-index:1;min-height:680px;box-shadow:0 0 50px rgba(38,38,38,0.5)}.paragraph--type--all-centers-map .all-centers-map__filter{z-index:2;display:flex;flex-direction:column;justify-content:space-between;background:#fff;box-shadow:0 0 25px rgba(0,0,0,0.25)}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__filter{box-shadow:none}}@media only screen and (min-width: 768px){.paragraph--type--all-centers-map .all-centers-map__filter{position:absolute;top:var(--grid-size);left:var(--grid-size);padding:calc(var(--grid-size) * .75) calc(var(--grid-size) * .5);border-radius:var(--font-size-base)}}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__filter{top:0;left:0;padding:calc(.5 * var(--grid-size))}}.paragraph--type--all-centers-map .all-centers-map__filter>div{min-width:300px;display:flex;flex-direction:column;justify-content:flex-end;padding:0 calc(var(--grid-size) * .25)}@media only screen and (min-width: 768px){.paragraph--type--all-centers-map .all-centers-map__filter>div:not(:first-child){margin-top:calc(var(--grid-size) / 2)}}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__filter>div{flex-direction:row;align-items:center}.paragraph--type--all-centers-map .all-centers-map__filter>div:not(:first-child){margin-top:calc(var(--grid-size) / 5)}}@media only screen and (min-width: 768px){.paragraph--type--all-centers-map .all-centers-map__filter>div label{margin-bottom:calc(var(--grid-size) * .25)}}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__filter>div label{margin-right:10px}}.paragraph--type--all-centers-map .all-centers-map__filter>div button{background:#B32B23;color:white;padding-top:0;padding-bottom:0}.paragraph--type--all-centers-map div[aria-roledescription="map"]>div:first-child>div:nth-child(4)>div{overflow:hidden}.paragraph--type--all-centers-map div[aria-roledescription="map"]>div:first-child>div:nth-child(4)>div:before{content:'';position:absolute;left:50%;width:9px;height:9px;border-radius:9px;display:block;background:rgba(0,0,0,0.5);top:11px;-webkit-transform:translateX(-45%);transform:translateX(-45%);z-index:2;mix-blend-mode:multiply}.paragraph--type--all-centers-map .all-centers-map__legend{position:absolute;box-shadow:0 0 25px rgba(0,0,0,0.25);bottom:30px;z-index:1;background-color:#fff;display:flex;align-items:center;left:var(--grid-size);padding:calc(var(--grid-size) * .5) calc(var(--grid-size) * .5);border-radius:var(--font-size-base);max-width:calc(100% - var(--grid-size) * 3);transition:width 300ms ease-out}.paragraph--type--all-centers-map .all-centers-map__legend:not(.-open){max-width:calc(300px + var(--grid-size));overflow:hidden}.paragraph--type--all-centers-map .all-centers-map__legend.-open button[value="open"]{opacity:0;visibility:hidden}.paragraph--type--all-centers-map .all-centers-map__legend.-open .all-centers-map__legend-text,.paragraph--type--all-centers-map .all-centers-map__legend.-open h4 button[value="open"]{display:none}.paragraph--type--all-centers-map .all-centers-map__legend.-open>div{opacity:1;visibility:visible;transition:opacity 300ms ease-out, height 300ms ease-out}.paragraph--type--all-centers-map .all-centers-map__legend:not(.-open)>div{opacity:0;visibility:hidden}.paragraph--type--all-centers-map .all-centers-map__legend:not(.-open) h4{display:flex !important}.paragraph--type--all-centers-map .all-centers-map__legend h4{display:flex;align-items:center;font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;font-size:20px;white-space:nowrap}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__legend h4{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--all-centers-map .all-centers-map__legend h4{font-size:24px;font-size:calc(20px + (28 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--all-centers-map .all-centers-map__legend h4{font-size:28px}}.paragraph--type--all-centers-map .all-centers-map__legend>div{display:flex;overflow:scroll;align-items:center;font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * .9);line-height:1.15}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__legend>div{font-size:calc(var(--font-size-base) * .9 * .8)}}.paragraph--type--all-centers-map .all-centers-map__legend>div>div{display:flex;white-space:nowrap;align-items:center}.paragraph--type--all-centers-map .all-centers-map__legend span:first-child{width:30px;min-width:30px;height:30px;border-radius:50%;display:inline-block;margin-left:calc(var(--grid-size) / 2);margin-right:calc(var(--grid-size) / 4)}.paragraph--type--all-centers-map .all-centers-map__legend span:last-child{width:calc(100% - 30px - (var(--grid-size) / 2))}.paragraph--type--all-centers-map .all-centers-map__legend button[value="open"]{display:flex;border:none;background:transparent;width:25px;min-width:25px;height:25px;margin-left:calc(var(--grid-size) / 2);position:relative;top:2px}.paragraph--type--all-centers-map .all-centers-map__legend button[value="close"]{display:flex;border:none;background:transparent;width:20px;min-width:20px;height:20px;margin-left:calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__legend{flex-direction:column}.paragraph--type--all-centers-map .all-centers-map__legend>div{flex-direction:column;width:100%;margin-top:calc(var(--grid-size) * .5);align-items:flex-start}.paragraph--type--all-centers-map .all-centers-map__legend>div>div{margin-top:calc(var(--grid-size) * .25)}.paragraph--type--all-centers-map .all-centers-map__legend h4{width:100%;min-width:auto}.paragraph--type--all-centers-map .all-centers-map__legend button[value="open"]{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);top:0}.paragraph--type--all-centers-map .all-centers-map__legend button[value="close"]{position:absolute;top:calc(var(--grid-size) * .5);right:calc(var(--grid-size) * .5)}.paragraph--type--all-centers-map .all-centers-map__legend span:first-child{margin-left:0}.paragraph--type--all-centers-map .all-centers-map__legend.-open>div{height:auto}.paragraph--type--all-centers-map .all-centers-map__legend:not(.-open){max-width:calc(100% - var(--grid-size) * 3)}.paragraph--type--all-centers-map .all-centers-map__legend:not(.-open)>div{height:0;margin-top:0}}.paragraph--type--all-centers-map .all-centers-map__legend [data-filter]{cursor:pointer}@media all and (min-width: 1121px){.paragraph--type--all-centers-map .all-centers-map__legend span:last-child{color:inherit !important}}@media all and (max-width: 1120px) and (min-width: 941px){.paragraph--type--all-centers-map .all-centers-map__legend h4,.paragraph--type--all-centers-map .all-centers-map__legend button[value="close"]{display:none}.paragraph--type--all-centers-map .all-centers-map__legend span:last-child{color:inherit !important}}@media all and (max-width: 940px) and (min-width: 768px){.paragraph--type--all-centers-map .all-centers-map__legend h4,.paragraph--type--all-centers-map .all-centers-map__legend button[value="close"]{display:none}.paragraph--type--all-centers-map .all-centers-map__legend span:first-child{display:none}.paragraph--type--all-centers-map .all-centers-map__legend>div>div:not(:first-child){margin-left:calc(var(--grid-size) * 0.75)}}@media all and (max-width: 767px){.paragraph--type--all-centers-map .all-centers-map__legend span:last-child{color:inherit !important}}.paragraph--type--meeting-centers-map{gap:var(--grid-size);margin-top:0 !important}@media only screen and (min-width: 800px){.paragraph--type--meeting-centers-map{display:-ms-grid;display:grid;-ms-grid-rows:auto auto;grid-template-rows:auto auto;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-template-areas:"Headline Content" "Map Map"}.paragraph--type--meeting-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .all-centers-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}}.paragraph--type--meeting-centers-map .field_headline{grid-area:Headline;padding:0 var(--grid-size);color:#B32B23}@media only screen and (max-width: 799px){.paragraph--type--meeting-centers-map .field_headline{padding:calc(var(--grid-size) / 2) var(--grid-size)}}.paragraph--type--meeting-centers-map .field_content{grid-area:Content;padding:0 var(--grid-size)}@media only screen and (max-width: 799px){.paragraph--type--meeting-centers-map .field_content{padding:0 var(--grid-size) calc(var(--grid-size) / 2)}}.paragraph--type--meeting-centers-map .meeting-centers-map{position:relative;grid-area:Map;margin-bottom:50px}.paragraph--type--meeting-centers-map .meeting-centers-map__map{position:relative;z-index:1;min-height:680px;box-shadow:0 0 50px rgba(38,38,38,0.5)}.paragraph--type--meeting-centers-map .meeting-centers-map__filter{z-index:2;display:flex;flex-direction:column;justify-content:space-between;background:#fff;box-shadow:0 0 25px rgba(0,0,0,0.25)}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter{box-shadow:none}}@media only screen and (min-width: 768px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter{position:absolute;top:var(--grid-size);left:var(--grid-size);padding:calc(var(--grid-size) * .75) calc(var(--grid-size) * .5);border-radius:var(--font-size-base)}}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter{top:0;left:0;padding:calc(.5 * var(--grid-size))}}.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div{min-width:300px;display:flex;flex-direction:column;justify-content:flex-end;padding:0 calc(var(--grid-size) * .25)}@media only screen and (min-width: 768px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div:not(:first-child){margin-top:calc(var(--grid-size) / 2)}}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div{flex-direction:row;align-items:center}.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div:not(:first-child){margin-top:calc(var(--grid-size) / 5)}}@media only screen and (min-width: 768px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div label{margin-bottom:calc(var(--grid-size) * .25)}}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div label{margin-right:10px}}.paragraph--type--meeting-centers-map .meeting-centers-map__filter>div button{background:#B32B23;color:white;padding-top:0;padding-bottom:0}.paragraph--type--meeting-centers-map div[aria-roledescription="map"]>div:first-child>div:nth-child(4)>div{overflow:hidden}.paragraph--type--meeting-centers-map div[aria-roledescription="map"]>div:first-child>div:nth-child(4)>div:before{content:'';position:absolute;left:50%;width:9px;height:9px;border-radius:9px;display:block;background:rgba(0,0,0,0.5);top:11px;-webkit-transform:translateX(-45%);transform:translateX(-45%);z-index:2;mix-blend-mode:multiply}.paragraph--type--meeting-centers-map .meeting-centers-map__legend{position:absolute;box-shadow:0 0 25px rgba(0,0,0,0.25);bottom:30px;z-index:1;background-color:#fff;display:flex;align-items:center;left:var(--grid-size);padding:calc(var(--grid-size) * .5) calc(var(--grid-size) * .5);border-radius:var(--font-size-base);max-width:calc(100% - var(--grid-size) * 3);transition:width 300ms ease-out}.paragraph--type--meeting-centers-map .meeting-centers-map__legend:not(.-open){max-width:calc(300px + var(--grid-size));overflow:hidden}.paragraph--type--meeting-centers-map .meeting-centers-map__legend.-open button[value="open"]{opacity:0;visibility:hidden}.paragraph--type--meeting-centers-map .meeting-centers-map__legend.-open>div{opacity:1;visibility:visible;transition:opacity 300ms ease-out, height 300ms ease-out}.paragraph--type--meeting-centers-map .meeting-centers-map__legend:not(.-open)>div{opacity:0;visibility:hidden}.paragraph--type--meeting-centers-map .meeting-centers-map__legend:not(.-open) h4{display:flex !important}.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4{display:flex;align-items:center;font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.75);line-height:1.15;font-size:20px;white-space:nowrap}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4{font-size:calc(var(--font-size-base) * 1.75 * .8)}}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4{font-size:24px;font-size:calc(20px + (28 - 20) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4{font-size:28px}}.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div{display:flex;overflow:scroll;align-items:center;font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div{font-size:calc(var(--font-size-base) * 1 * .8)}}.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div>div{display:flex;white-space:nowrap;align-items:center}.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:first-child{width:30px;min-width:30px;height:30px;border-radius:50%;display:inline-block;margin-left:calc(var(--grid-size) / 2);margin-right:calc(var(--grid-size) / 4)}.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:last-child{width:calc(100% - 30px - (var(--grid-size) / 2))}.paragraph--type--meeting-centers-map .meeting-centers-map__legend button[value="open"]{display:flex;border:none;background:transparent;width:25px;min-width:25px;height:25px;margin-left:calc(var(--grid-size) / 2);position:relative;top:2px}.paragraph--type--meeting-centers-map .meeting-centers-map__legend button[value="close"]{display:flex;border:none;background:transparent;width:20px;min-width:20px;height:20px;margin-left:calc(var(--grid-size) / 2)}@media only screen and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend{flex-direction:column}.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div{flex-direction:column;width:100%;margin-top:calc(var(--grid-size) * .5);align-items:flex-start}.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div>div{margin-top:calc(var(--grid-size) * .25)}.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4{width:100%;min-width:auto}.paragraph--type--meeting-centers-map .meeting-centers-map__legend button[value="open"]{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);top:0}.paragraph--type--meeting-centers-map .meeting-centers-map__legend button[value="close"]{position:absolute;top:calc(var(--grid-size) * .5);right:calc(var(--grid-size) * .5)}.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:first-child{margin-left:0}.paragraph--type--meeting-centers-map .meeting-centers-map__legend.-open>div{height:auto}.paragraph--type--meeting-centers-map .meeting-centers-map__legend:not(.-open){max-width:calc(100% - var(--grid-size) * 3)}.paragraph--type--meeting-centers-map .meeting-centers-map__legend:not(.-open)>div{height:0;margin-top:0}}.paragraph--type--meeting-centers-map .meeting-centers-map__legend [data-filter]{cursor:pointer}@media all and (min-width: 1121px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:last-child{color:inherit !important}}@media all and (max-width: 1120px) and (min-width: 941px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4,.paragraph--type--meeting-centers-map .meeting-centers-map__legend button[value="close"]{display:none}.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:last-child{color:inherit !important}}@media all and (max-width: 940px) and (min-width: 768px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend h4,.paragraph--type--meeting-centers-map .meeting-centers-map__legend button[value="close"]{display:none}.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:first-child{display:none}.paragraph--type--meeting-centers-map .meeting-centers-map__legend>div>div:not(:first-child){margin-left:calc(var(--grid-size) * 0.75)}}@media all and (max-width: 767px){.paragraph--type--meeting-centers-map .meeting-centers-map__legend span:last-child{color:inherit !important}}.paragraph--type--facilities-map{gap:var(--grid-size);margin-top:0 !important}@media only screen and (min-width: 800px){.paragraph--type--facilities-map{display:-ms-grid;display:grid;-ms-grid-rows:auto auto;grid-template-rows:auto auto;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;grid-template-areas:"Headline Content" "Map Map"}.paragraph--type--facilities-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--facilities-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--facilities-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--facilities-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--facilities-map > .all-centers-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.paragraph--type--facilities-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--facilities-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--facilities-map > .meeting-centers-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}}.paragraph--type--facilities-map .field_headline{grid-area:Headline;padding-left:calc(var(--grid-size) / 2);color:#B32B23}@media only screen and (min-width: 800px){.paragraph--type--facilities-map .field_headline{padding-left:var(--grid-size)}}.paragraph--type--facilities-map .field_content{grid-area:Content;padding-right:var(--grid-size)}@media only screen and (max-width: 799px){.paragraph--type--facilities-map .field_content{padding:calc(var(--grid-size) / 2)}}.paragraph--type--facilities-map .facilities-map{position:relative;grid-area:Map;margin-bottom:50px}@media only screen and (min-width: 768px){.paragraph--type--curved-teaser .field_background_image{-ms-grid-row:1;-ms-grid-row-span:5;-ms-grid-column:1}.paragraph--type--curved-teaser .field_headline{-ms-grid-row:1;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--curved-teaser .field_content{-ms-grid-row:3;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--curved-teaser .fields_link_download{-ms-grid-row:5;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--all-centers-map .field_headline{-ms-grid-row:1;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--all-centers-map .field_content{-ms-grid-row:3;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--meeting-centers-map .field_headline{-ms-grid-row:1;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--meeting-centers-map .field_content{-ms-grid-row:3;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--facilities-map .field_headline{-ms-grid-row:1;-ms-grid-column:3;-ms-grid-column-span:3}.paragraph--type--facilities-map .field_content{-ms-grid-row:3;-ms-grid-column:3;-ms-grid-column-span:3}}@media only screen and (min-width: 800px){.paragraph--type--all-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--all-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--all-centers-map .all-centers-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.paragraph--type--all-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--all-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map .meeting-centers-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.paragraph--type--meeting-centers-map > .meeting-centers-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.paragraph--type--all-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--facilities-map > .field_headline{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.paragraph--type--all-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--meeting-centers-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--facilities-map > .field_content{-ms-grid-row:1;-ms-grid-column:2;-ms-grid-column-span:1}.paragraph--type--facilities-map .facilities-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.paragraph--type--meeting-centers-map > .facilities-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}.paragraph--type--facilities-map > .facilities-map{-ms-grid-row:2;-ms-grid-column:1;-ms-grid-column-span:2}}.paragraph--type--facilities-map .facilities-map__map{position:relative;z-index:1;min-height:650px;box-shadow:0 0 50px rgba(38,38,38,0.5)}.paragraph--type--facilities-map .facilities-map__filter{z-index:2;top:var(--grid-size);left:var(--grid-size);display:flex;flex-direction:column;justify-content:space-between;background:#fff;border-radius:var(--font-size-base);padding:calc(var(--grid-size) * .75) calc(var(--grid-size) * .5);box-shadow:0 0 25px rgba(0,0,0,0.25)}@media only screen and (min-width: 768px){.paragraph--type--facilities-map .facilities-map__filter{position:absolute}}.paragraph--type--facilities-map .facilities-map__filter>div{min-width:300px;display:flex;flex-direction:column;justify-content:flex-end;padding:0 calc(var(--grid-size) * .25)}.paragraph--type--facilities-map .facilities-map__filter>div:not(:first-child){margin-top:calc(var(--grid-size) / 2)}.paragraph--type--facilities-map .facilities-map__filter>div label{margin-bottom:calc(var(--grid-size) * .25)}.paragraph--type--facilities-map .facilities-map__filter>div button{background:#B32B23;color:white;padding-top:0;padding-bottom:0}.paragraph--type--meeting-center-details.paragraph--type--meeting-center-details,.paragraph--type--facility-details.paragraph--type--meeting-center-details,.node--meeting-center.paragraph--type--meeting-center-details{margin-top:calc(var(--grid-size) * 1.5)}.paragraph--type--meeting-center-details .field_address_city,.paragraph--type--facility-details .field_address_city,.node--meeting-center .field_address_city{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;font-size:2.4rem}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--meeting-center-details .field_address_city,.paragraph--type--facility-details .field_address_city,.node--meeting-center .field_address_city{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--meeting-center-details .field_address_city,.paragraph--type--facility-details .field_address_city,.node--meeting-center .field_address_city{font-size:20px}}.paragraph--type--meeting-center-details h1,.paragraph--type--facility-details h1,.node--meeting-center h1{margin-bottom:2rem}.paragraph--type--meeting-center-details .field_subline,.paragraph--type--facility-details .field_subline,.node--meeting-center .field_subline{font-size:2.4rem;margin-bottom:2rem}@media only screen and (min-width: 768px){.paragraph--type--meeting-center-details .facility,.paragraph--type--facility-details .facility,.node--meeting-center .facility{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 var(--grid-size)}}@media only screen and (max-width: 767px){.paragraph--type--meeting-center-details .facility,.paragraph--type--facility-details .facility,.node--meeting-center .facility{padding:0 5vw}}.paragraph--type--meeting-center-details .facility:nth-of-type(2n+2),.paragraph--type--facility-details .facility:nth-of-type(2n+2),.node--meeting-center .facility:nth-of-type(2n+2){background-color:#F5F3ED}.paragraph--type--meeting-center-details .facility:nth-of-type(2n+2) .program,.paragraph--type--facility-details .facility:nth-of-type(2n+2) .program,.node--meeting-center .facility:nth-of-type(2n+2) .program{background-color:white}.paragraph--type--meeting-center-details .facility:nth-of-type(2n+1),.paragraph--type--facility-details .facility:nth-of-type(2n+1),.node--meeting-center .facility:nth-of-type(2n+1){background-color:#fff}.paragraph--type--meeting-center-details .facility__info,.paragraph--type--facility-details .facility__info,.node--meeting-center .facility__info{width:100%}@media only screen and (min-width: 768px){.paragraph--type--meeting-center-details .facility__info,.paragraph--type--facility-details .facility__info,.node--meeting-center .facility__info{width:calc(100% / 12 * 7 - calc(var(--grid-size) / 2))}}.paragraph--type--meeting-center-details .facility__contact,.paragraph--type--facility-details .facility__contact,.node--meeting-center .facility__contact{width:100%;margin-top:4.0rem}@media only screen and (min-width: 768px){.paragraph--type--meeting-center-details .facility__contact,.paragraph--type--facility-details .facility__contact,.node--meeting-center .facility__contact{width:calc(100% / 12 * 5 - calc(var(--grid-size) / 2))}}.paragraph--type--meeting-center-details .facility__contact h3,.paragraph--type--facility-details .facility__contact h3,.node--meeting-center .facility__contact h3{font-weight:normal;font-size:1.6rem}.paragraph--type--meeting-center-details .facility__contact .title,.paragraph--type--facility-details .facility__contact .title,.node--meeting-center .facility__contact .title{font-family:'SourceSansPro-Bold', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px;font-size:2.0rem}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--meeting-center-details .facility__contact .title,.paragraph--type--facility-details .facility__contact .title,.node--meeting-center .facility__contact .title{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--meeting-center-details .facility__contact .title,.paragraph--type--facility-details .facility__contact .title,.node--meeting-center .facility__contact .title{font-size:20px}}.paragraph--type--meeting-center-details .facility__contact .directions svg,.paragraph--type--facility-details .facility__contact .directions svg,.node--meeting-center .facility__contact .directions svg{display:inline-block;width:20px;height:29px;margin-right:31px;position:relative;top:7px;margin-left:14px;overflow:visible}.paragraph--type--meeting-center-details .facility__contact .directions svg path,.paragraph--type--facility-details .facility__contact .directions svg path,.node--meeting-center .facility__contact .directions svg path{fill:white;stroke:#B32B23}.paragraph--type--meeting-center-details .facility__contact .directions+.contact-card,.paragraph--type--facility-details .facility__contact .directions+.contact-card,.node--meeting-center .facility__contact .directions+.contact-card{margin-top:20px}.paragraph--type--meeting-center-details .facility__contact hr,.paragraph--type--facility-details .facility__contact hr,.node--meeting-center .facility__contact hr{border:none;border-top-style:dashed;border-top-color:#D8D8D8;border-top-width:2px;margin:2rem 0}.paragraph--type--meeting-center-details .facility__contact .contact-card,.paragraph--type--facility-details .facility__contact .contact-card,.node--meeting-center .facility__contact .contact-card{display:flex;flex-wrap:wrap}.paragraph--type--meeting-center-details .facility__contact .contact-card>*,.paragraph--type--facility-details .facility__contact .contact-card>*,.node--meeting-center .facility__contact .contact-card>*{-ms-grid-row-align:center;align-self:center}.paragraph--type--meeting-center-details .facility__contact .contact-card>*:nth-child(2n),.paragraph--type--facility-details .facility__contact .contact-card>*:nth-child(2n),.node--meeting-center .facility__contact .contact-card>*:nth-child(2n){width:calc(100% - 48px - 22px);margin-bottom:12px}.paragraph--type--meeting-center-details .facility__contact .contact-card>*:nth-child(2n-1),.paragraph--type--facility-details .facility__contact .contact-card>*:nth-child(2n-1),.node--meeting-center .facility__contact .contact-card>*:nth-child(2n-1){width:48px;margin-right:22px;margin-bottom:12px}.paragraph--type--meeting-center-details .facility__contact .contact-card svg,.paragraph--type--facility-details .facility__contact .contact-card svg,.node--meeting-center .facility__contact .contact-card svg{margin-left:auto;margin-right:auto}.paragraph--type--meeting-center-details .facility__contact .contact-card__image,.paragraph--type--facility-details .facility__contact .contact-card__image,.node--meeting-center .facility__contact .contact-card__image{display:flex;align-items:center;justify-content:center}.paragraph--type--meeting-center-details .facility__contact .contact-card__image img,.paragraph--type--facility-details .facility__contact .contact-card__image img,.node--meeting-center .facility__contact .contact-card__image img{border-radius:50%;width:48px;height:48px}.paragraph--type--meeting-center-details .facility__contact .contact-card__name,.paragraph--type--facility-details .facility__contact .contact-card__name,.node--meeting-center .facility__contact .contact-card__name{font-size:2.4rem;line-height:2.0rem;color:#B32B23}.paragraph--type--meeting-center-details .facility__contact .contact-card__department,.paragraph--type--facility-details .facility__contact .contact-card__department,.node--meeting-center .facility__contact .contact-card__department{font-size:1.6rem}.paragraph--type--meeting-center-details .facility__contact .contact-card__telephone-icon,.paragraph--type--facility-details .facility__contact .contact-card__telephone-icon,.node--meeting-center .facility__contact .contact-card__telephone-icon{-webkit-transform:scaleY(-1);transform:scaleY(-1);height:24px}.paragraph--type--meeting-center-details .facility__contact .contact-card__email-icon,.paragraph--type--facility-details .facility__contact .contact-card__email-icon,.node--meeting-center .facility__contact .contact-card__email-icon{-webkit-transform:scale(0.75);transform:scale(0.75)}.paragraph--type--meeting-center-details .facility__contact .contact-card__fax-icon,.paragraph--type--facility-details .facility__contact .contact-card__fax-icon,.node--meeting-center .facility__contact .contact-card__fax-icon{width:20px;height:22px}.paragraph--type--meeting-center-details .facility__programs,.paragraph--type--facility-details .facility__programs,.node--meeting-center .facility__programs{flex:1 0 100%;padding:calc(var(--grid-size) * 1.5) 0 0}.paragraph--type--meeting-center-details .facility__programs h2,.paragraph--type--facility-details .facility__programs h2,.node--meeting-center .facility__programs h2{color:#B32B23;flex:1 0 100%;margin-bottom:calc(var(--grid-size) * .5)}.paragraph--type--meeting-center-details .facility__programs button,.paragraph--type--facility-details .facility__programs button,.node--meeting-center .facility__programs button{display:none !important}.paragraph--type--meeting-center-details .facility__programs .program,.paragraph--type--facility-details .facility__programs .program,.node--meeting-center .facility__programs .program{margin:calc(var(--grid-size) / 2)}.paragraph--type--meeting-center-details .facilities header,.paragraph--type--facility-details .facilities header,.node--meeting-center .facilities header{border-top:dashed 1px #D8D8D8;padding-top:calc(var(--grid-size) * 2);margin:calc(var(--grid-size) * 2) var(--grid-size) calc(var(--grid-size) * 2);color:#B32B23}.paragraph--type--meeting-center-details .facilities .facility,.paragraph--type--facility-details .facilities .facility,.node--meeting-center .facilities .facility{padding-top:calc(var(--grid-size));padding-bottom:calc(var(--grid-size) * 3);margin:0}.paragraph--type--meeting-center-details .facilities .facility:last-of-type,.paragraph--type--facility-details .facilities .facility:last-of-type,.node--meeting-center .facilities .facility:last-of-type{margin-bottom:-100px}.paragraph--type--meeting-center-details .facilities .facility__anchor,.paragraph--type--facility-details .facilities .facility__anchor,.node--meeting-center .facilities .facility__anchor{position:relative;display:block;top:calc(-100px - var(--grid-size));width:100%;height:1px}.paragraph--type--programs{display:flex;flex-wrap:wrap}.paragraph--type--programs .field_headline{color:#B32B23}@media only screen and (max-width: 767px){.paragraph--type--programs .field_headline{margin:var(--grid-size) 0}}@media only screen and (min-width: 768px){.paragraph--type--programs form select,.paragraph--type--programs form button{display:inline-block}}@media only screen and (min-width: 768px){.programs__content{display:flex;justify-content:space-between}.programs__content>*{width:calc(50% - var(--grid-size))}}.programs__list{width:100%}.programs__list--sticky-filters .programs__filters{position:fixed;z-index:2;top:0;width:calc(1440px - var(--grid-size) * 2);padding-left:var(--grid-size);padding-top:calc(var(--grid-size) * .5);padding-bottom:calc(var(--grid-size) * .5)}.programs__filters{width:100%;background:white;padding-top:var(--grid-size);padding-bottom:var(--grid-size);transition:opacity 500ms ease-out}@media only screen and (min-width: 600px){.programs__filters{display:flex}}.programs__filters>.custom-input{min-width:250px}@media only screen and (min-width: 600px){.programs__filters>.custom-input+.custom-input{margin-left:var(--grid-size)}}@media only screen and (max-width: 599px){.programs__filters>.custom-input+.custom-input{margin-top:1em}}.programs__programs{display:flex;flex-wrap:wrap}@media only screen and (min-width: 1330px){.programs__programs{margin-left:calc(-.5 * var(--grid-size));margin-right:calc(-.5 * var(--grid-size))}}@media only screen and (min-width: 560px) and (max-width: 1329px){.programs__programs{margin-left:calc(-.25 * var(--grid-size));margin-right:calc(-.25 * var(--grid-size))}}@media only screen and (min-width: 1330px){.programs__programs .paragraph{margin:0 calc(var(--grid-size) / 2) var(--grid-size)}}@media only screen and (min-width: 1024px) and (max-width: 1329px){.programs__programs .paragraph{margin:0 calc(var(--grid-size) / 4) calc(var(--grid-size) / 2)}}@media only screen and (min-width: 560px) and (max-width: 1023px){.programs__programs .paragraph{margin:0 calc(var(--grid-size) / 4) calc(var(--grid-size) / 2)}}@media only screen and (max-width: 559px){.programs__programs .paragraph{margin:0 0 calc(var(--grid-size) / 2)}}.programs__programs .paragraph.-hidden{display:none}.programs__show-more{margin-left:auto;margin-right:auto}.paragraph--type--quarterly-programs{background-color:transparent}@media only screen and (min-width: 768px){.paragraph--type--quarterly-programs{display:flex;flex-wrap:wrap;padding:calc(var(--grid-size) * 2) calc(var(--grid-size) * .5)}}@media only screen and (max-width: 767px){.paragraph--type--quarterly-programs{padding-top:var(--grid-size);padding-bottom:var(--grid-size)}}@media only screen and (min-width: 768px){.paragraph--type--quarterly-programs .field_headline,.paragraph--type--quarterly-programs .field_content{margin-right:calc(var(--grid-size) * .5);margin-left:calc(var(--grid-size) * .5);width:calc(50% - var(--grid-size))}}.paragraph--type--quarterly-programs .field_headline{color:#B32B23;margin-bottom:1em}.paragraph--type--quarterly-programs .field_content{font-family:'SourceSansPro-Regular', Arial, sans-serif;font-weight:normal;line-height:1.5;font-size:16px}@media (min-width: 320px) and (max-width: 1399px){.paragraph--type--quarterly-programs .field_content{font-size:18px;font-size:calc(16px + (20 - 16) * (100vw - 320px) / (1400 - 320))}}@media (min-width: 1400px){.paragraph--type--quarterly-programs .field_content{font-size:20px}}.paragraph--type--quarterly-programs .field_program .program{width:100% !important}.paragraph--type--quarterly-programs .field_program{width:100%;margin:var(--grid-size) calc(var(--grid-size) / 2) var(--grid-size)}@media only screen and (min-width: 1330px){.paragraph--type--quarterly-programs .field_program{width:calc(25% - var(--grid-size))}.paragraph--type--quarterly-programs .field_program:nth-child(3):last-child,.paragraph--type--quarterly-programs .field_program:nth-child(3):nth-last-child(2),.paragraph--type--quarterly-programs .field_program:nth-child(4):last-child{width:calc(50% - var(--grid-size))}.paragraph--type--quarterly-programs .field_program:nth-child(3):last-child .program__content,.paragraph--type--quarterly-programs .field_program:nth-child(3):nth-last-child(2) .program__content,.paragraph--type--quarterly-programs .field_program:nth-child(4):last-child .program__content{min-height:160px}}@media only screen and (min-width: 1024px) and (max-width: 1329px){.paragraph--type--quarterly-programs .field_program{width:calc(25% - var(--grid-size) / 2)}.paragraph--type--quarterly-programs .field_program:nth-child(3):last-child,.paragraph--type--quarterly-programs .field_program:nth-child(3):nth-last-child(2),.paragraph--type--quarterly-programs .field_program:nth-child(4):last-child{width:calc(50% - var(--grid-size))}.paragraph--type--quarterly-programs .field_program:nth-child(3):last-child .program__content,.paragraph--type--quarterly-programs .field_program:nth-child(3):nth-last-child(2) .program__content,.paragraph--type--quarterly-programs .field_program:nth-child(4):last-child .program__content{min-height:160px}}.paragraph--type--video{position:relative;overflow:hidden}.paragraph--type--video .field_splash_image,.paragraph--type--video .field_video{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.paragraph--type--video .field_splash_image .field_media_image,.paragraph--type--video .field_splash_image .field_media_image img,.paragraph--type--video .field_video .field_media_image,.paragraph--type--video .field_video .field_media_image img{max-height:100vh}.paragraph--type--video .field_splash_image .field_media_image img,.paragraph--type--video .field_video .field_media_image img{display:block}.paragraph--type--video .field_video iframe{position:absolute;left:0;top:0;width:100%;height:100%}.paragraph--type--video .field_splash_image{border-radius:var(--font-size-base);overflow:hidden;background-color:#B32B23;position:relative}.paragraph--type--video .field_splash_image img{position:relative;z-index:1;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%;opacity:0.55}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--video .field_splash_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}.paragraph--type--video__play{position:absolute;z-index:2;left:50%;top:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out, -webkit-transform .3s ease-out;cursor:pointer;border:solid 2px #fff;border-radius:90px;width:90px;height:90px}.paragraph--type--video__play:hover{-webkit-transform:translateX(-50%) translateY(-50%) scale(0.9);transform:translateX(-50%) translateY(-50%) scale(0.9)}.paragraph--type--video__play:after{position:absolute;content:'';border-style:solid;border-width:20px;border-color:transparent transparent transparent #fff;width:0;height:0;margin-left:-6px;margin-top:-19px;left:50%;top:50%}.paragraph--type--video__play:before{border:solid 2px #fff;border-radius:90px;width:90px;height:90px;margin-left:-45px;margin-top:-45px}.paragraph--type--video .field_2_click_notice{position:absolute;z-index:3;right:0;left:0;text-align:center;bottom:0;background-color:rgba(255,255,255,0.8);padding:3px 6px;color:#262626}.paragraph--type--video .field_video{display:none}.paragraph--type--video--open .field_video{display:block}.paragraph--type--video--open .field_2_click_notice,.paragraph--type--video--open .field_splash_image,.paragraph--type--video--open .paragraph--type--video__play,.paragraph--type--video--open .field_video_headline{display:none}.paragraph--type--video .field_video_headline{width:75%;margin-bottom:1em}.paragraph--type--video-slider{position:relative}@media only screen and (max-width: 849px){.paragraph--type--video-slider{padding-left:5px;padding-right:5px}}.paragraph--type--video-slider__slider{position:relative;min-height:360px}@media only screen and (max-width: 849px){.paragraph--type--video-slider__slider{min-height:400px}}@media only screen and (max-width: 639px){.paragraph--type--video-slider__slider{min-height:300px}}.paragraph--type--video-slider__slider .field_video_slider_items{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-transform-origin:center;transform-origin:center;background:#7B7B7B;overflow:hidden;will-change:filter}@media only screen and (min-width: 850px){.paragraph--type--video-slider__slider .field_video_slider_items{height:360px;width:calc(360px * 1.78)}}@media only screen and (max-width: 849px){.paragraph--type--video-slider__slider .field_video_slider_items{height:calc(80vw / 1.78);width:80vw}}.paragraph--type--video-slider__slider .field_video_slider_items:not([data-carousel-layer="0"]){-webkit-filter:blur(1px);filter:blur(1px)}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item{height:100%;display:flex}@media only screen and (max-width: 849px){.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item{display:block}}@media only screen and (min-width: 850px){.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div{width:50%}}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type{padding:2rem;color:#fff;display:flex;flex-direction:column}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type:first-child{width:100%}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_headline{margin-bottom:1em}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_headline+div,.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_descript+div{margin-top:2rem}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type .field_video_slider_item_button{margin-left:auto;margin-right:auto;margin-top:auto !important;font-weight:normal;display:block;cursor:pointer;max-width:100%;width:80%;color:#262626;min-height:0;padding:11px}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type iframe{position:absolute;left:0;top:0;width:100%;height:100%;border:none}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div:last-of-type iframe[data-src]{display:none}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div .field_media_image img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}@media only screen and (max-width: 849px){.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item>div .field_media_image img{display:none}}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item .field_video_slider_item_image{height:100%}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item .field_video_slider_item_image .field_media_image{height:100%;position:relative;overflow:hidden}.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item .field_video_slider_item_image .field_media_image img{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);min-width:100%;min-height:100%;width:auto;max-width:none;height:auto;max-height:100%}@supports ((-o-object-fit: cover) or (object-fit: cover)){.paragraph--type--video-slider__slider .field_video_slider_items .field_video_slider_item .field_video_slider_item_image .field_media_image img{left:0;top:0;-webkit-transform:none;transform:none;width:100%;max-width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}.paragraph--type--video-slider__controls{text-align:center;padding-bottom:var(--grid-size)}@media only screen and (min-width: 850px){.paragraph--type--video-slider__controls{padding-top:var(--grid-size)}}@media only screen and (max-width: 849px){.paragraph--type--video-slider__controls{padding-top:calc(var(--grid-size) * .25)}}.paragraph--type--video-slider__controls ul{display:none}.paragraph--type--video-slider__controls button{height:30px;border:none;margin-left:.5rem;margin-right:.5rem;background:none}.paragraph--type--newsletter-registration{background-color:#01A28D;color:white;border-radius:var(--font-size-base);box-shadow:0 var(--grid-size) 100px rgba(38,38,38,0.25);overflow:hidden}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration{margin:calc(var(--grid-size)  * 4) var(--grid-size) 0;padding:var(--grid-size);position:relative}}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration{margin:calc(var(--grid-size)  * 4) 5vw 0;padding:calc(var(--grid-size)  * .5)}}.paragraph--type--newsletter-registration .field_headline+*{margin-top:calc(var(--grid-size)  * .5)}.paragraph--type--newsletter-registration>svg{position:relative;top:-6px;float:left;width:100px;height:57px;margin-right:calc(var(--grid-size) * .5)}@media only screen and (max-width: 769px){.paragraph--type--newsletter-registration>svg{top:3px}}@media only screen and (max-width: 449px){.paragraph--type--newsletter-registration>svg{float:none;margin-bottom:1.5rem}}.paragraph--type--newsletter-registration>svg>g>path,.paragraph--type--newsletter-registration>svg>g>g>rect{fill:white !important}.paragraph--type--newsletter-registration .nl2go,.paragraph--type--newsletter-registration .nl2go button{margin-top:var(--grid-size)}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration .nl2go__group:not(:first-of-type){margin-top:5px}}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration .nl2go__group:not(:first-of-type){margin-top:15px}}.paragraph--type--newsletter-registration .nl2go__group>*{display:block}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration .nl2go__group{display:flex;align-items:center}}.paragraph--type--newsletter-registration .nl2go__group input[type="text"],.paragraph--type--newsletter-registration .nl2go__group input[type="email"],.paragraph--type--newsletter-registration .nl2go__group .custom-input{border-color:white;color:white;font-family:inherit;font-size:inherit;transition:background-color .25s linear}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration .nl2go__group input[type="text"],.paragraph--type--newsletter-registration .nl2go__group input[type="email"],.paragraph--type--newsletter-registration .nl2go__group .custom-input{width:100%;margin-top:10px}}.paragraph--type--newsletter-registration .nl2go__group input[type="text"]:focus,.paragraph--type--newsletter-registration .nl2go__group input[type="email"]:hover{background-color:rgba(255,255,255,0.15)}.paragraph--type--newsletter-registration .nl2go__group .custom-input{min-width:200px}.paragraph--type--newsletter-registration .nl2go__group .custom-input:after{content:url(/themes/frankfurter_verband_theme/dist/fonts/arrow--white.svg)}.paragraph--type--newsletter-registration .nl2go__group .custom-input .custom-input__options{background:#01A28D;border-color:#fff;padding-left:calc(var(--grid-size) * .5)}.paragraph--type--newsletter-registration .nl2go__group .custom-input .custom-input__options .custom-input__option{color:rgba(255,255,255,0.75)}.paragraph--type--newsletter-registration .nl2go__group .custom-input .custom-input__options .custom-input__option:hover{color:#fff}.paragraph--type--newsletter-registration .nl2go__group input[type="checkbox"]{display:inline-block;border:none;margin-right:1rem}.paragraph--type--newsletter-registration .nl2go__group input[type="text"]::-webkit-input-placeholder,.paragraph--type--newsletter-registration .nl2go__group input[type="email"]::-webkit-input-placeholder{color:rgba(255,255,255,0.75)}.paragraph--type--newsletter-registration .nl2go__group input[type="text"]::-moz-placeholder,.paragraph--type--newsletter-registration .nl2go__group input[type="email"]::-moz-placeholder{color:rgba(255,255,255,0.75)}.paragraph--type--newsletter-registration .nl2go__group input[type="text"]:-ms-input-placeholder,.paragraph--type--newsletter-registration .nl2go__group input[type="email"]:-ms-input-placeholder{color:rgba(255,255,255,0.75)}.paragraph--type--newsletter-registration .nl2go__group input[type="text"]:-moz-placeholder,.paragraph--type--newsletter-registration .nl2go__group input[type="email"]:-moz-placeholder{color:rgba(255,255,255,0.75)}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration .nl2go__group img{position:relative !important;top:auto !important;margin-bottom:15px;display:block}}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration .nl2go__label{width:150px}}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration .nl2go__label>div[style*="padding"]{padding-left:150px !important}}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration .nl2go__label>div[style*="padding"]{padding-left:0 !important}}.paragraph--type--newsletter-registration .nl2go button[type="submit"]{background-color:#fff;min-height:50px;padding:calc((50px - (var(--font-size-base) * 1.5)) * .5) 25px;text-align:center;display:inline-block;text-decoration:none !important;position:relative;border-radius:1000em;color:#262626;transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear, -webkit-transform .25s linear;background-color:white;cursor:pointer}.paragraph--type--newsletter-registration .nl2go button[type="submit"]:before,.paragraph--type--newsletter-registration .nl2go button[type="submit"]:after{position:relative;top:1px;display:inline-block;vertical-align:middle;height:var(--font-size-base);min-width:var(--font-size-base);line-height:1 !important}.paragraph--type--newsletter-registration .nl2go button[type="submit"]:after{content:url(/themes/frankfurter_verband_theme/dist/fonts/arrow.svg);float:right;margin-left:var(--font-size-base)}.paragraph--type--newsletter-registration .nl2go button[type="submit"]:hover{-webkit-transform:translateY(-5px);transform:translateY(-5px)}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration .nl2go button[type="submit"]{min-width:250px}}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration .nl2go button[type="submit"]{display:block;width:100%}}@media only screen and (max-width: 374px){.paragraph--type--newsletter-registration .nl2go button[type="submit"]:after,.paragraph--type--newsletter-registration .nl2go button[type="submit"]:before{display:none}}@media only screen and (min-width: 768px){.paragraph--type--newsletter-registration .nl2go button[type="submit"]{min-width:100px}}@media only screen and (max-width: 767px){.paragraph--type--newsletter-registration .nl2go button[type="submit"]{margin-top:5vw}}@media only screen and (max-width: 374px){.paragraph--type--newsletter-registration .nl2go button[type="submit"]{padding-left:13px;padding-right:13px}}html:has(.paragraph--type--events){scroll-padding-top:110px}@-webkit-keyframes event-spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes event-spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.paragraph--type--events__filters__reset button,.paragraph--type--events__filter label{font-weight:600;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}.input-wrap{position:relative;min-width:135px;margin-right:1em}.input-wrap:after{content:'';width:16px;height:16px;background:white url(/themes/frankfurter_verband_theme/dist/fonts/chevron-down.svg) no-repeat left center;background-size:16px auto;position:absolute;right:3px;padding-right:20px;top:calc(var(--input-height) / 2);margin-top:-8px}.input-wrap select,.input-wrap input{cursor:pointer;appearance:none;-webkit-appearance:none}.input-wrap select[type=date],.input-wrap input[type=date]{border:none;background:yellow;height:0}.input-wrap select:not([type=checkbox]):not([type=date]),.input-wrap input:not([type=checkbox]):not([type=date]){width:100%;border:solid 2px #262626;height:var(--input-height);border-radius:var(--input-height);font-size:inherit;font-family:inherit;padding:0 30px 0 20px}.input-wrap select[name="weekdays"],.input-wrap select[name="sorting"],.input-wrap input[name="weekdays"],.input-wrap input[name="sorting"]{min-width:195px}.toggle-wrap{display:flex;align-items:center}.toggle-wrap label:first-child{padding-right:1em}.toggle-wrap label:not(.-selected){font-weight:300}.toggle-wrap button{appearance:none;-webkit-appearance:none;width:30px;height:18px;border:solid 1px black;background:transparent;border-radius:8px;position:relative;top:1px}.toggle-wrap button:before{content:'';width:12px;height:12px;border-radius:6px;background:black;display:block;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);left:2px;transition:left .35s ease-in-out}.toggle-wrap button+label{padding-left:1em}.toggle-wrap button[value="1"]:before{left:14px;background-color:#B32B23}.paragraph--type--events{--input-height: 54px}@media only screen and (max-width: 767px){.paragraph--type--events{padding-top:calc(var(--grid-size) * .5);padding-bottom:calc(var(--grid-size) * .5)}}@media only screen and (min-width: 768px){.paragraph--type--events{padding-top:var(--grid-size);padding-bottom:var(--grid-size)}}@media only screen and (min-width: 1280px){.paragraph--type--events{margin-left:calc(var(--grid-size) * 3);margin-right:calc(var(--grid-size) * 3)}}.paragraph--type--events[data-results="0"] .-result-dependent{display:none !important}.paragraph--type--events__headline{margin-bottom:1em}.paragraph--type--events__content{margin-bottom:1em}@media (min-width: 1024px){.paragraph--type--events__content{margin-right:calc(var(--grid-size) * 3)}}.paragraph--type--events__filters--desktop{display:flex;flex-wrap:wrap;align-items:center}@media (max-width: 1023px){.paragraph--type--events__filters--desktop{display:none}}.paragraph--type--events__filters--mobile{position:relative;z-index:10}@media (min-width: 1024px){.paragraph--type--events__filters--mobile{display:none}}.paragraph--type--events__filters--mobile>button{width:100%;background:#D8D8D8;height:var(--input-height);border-radius:var(--input-height);font-size:inherit;font-family:inherit;padding:0 30px 0 20px;line-height:1;border:none;text-decoration:none}.paragraph--type--events__filters #pagination-anchor{flex:1 0 100%;order:19}.paragraph--type--events__filters__applied{order:20;flex:1 0 100%;margin-top:0}.paragraph--type--events__filters__applied th,.paragraph--type--events__filters__applied td{text-align:left;height:36px;vertical-align:middle}.paragraph--type--events__filters__applied th{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.15);line-height:1.15;color:#B32B23;width:160px}@media only screen and (max-width: 767px){.paragraph--type--events__filters__applied th{font-size:calc(var(--font-size-base) * 1.15 * .8)}}.paragraph--type--events__filters__applied button{height:36px;border-radius:18px;text-decoration:none;border:none;background-color:#D8D8D8;line-height:1;padding:0 18px;margin:.5em .75em .5em 0}.paragraph--type--events__filters__applied button:hover{opacity:.5}.paragraph--type--events__filters__applied button:after{content:'X';display:inline-block;vertical-align:middle;margin-left:.5em}.paragraph--type--events__filters__reset{order:30;flex:1 0 100%;margin-top:1em}.paragraph--type--events__filters__reset button{background:transparent;border:none;display:flex;align-items:center}.paragraph--type--events__filters__reset button svg{position:relative;top:1px;width:10px;margin-right:.5em}.paragraph--type--events__filters__overlay{position:fixed;z-index:1000;top:110px;right:0;bottom:0;left:0;overflow:hidden auto;background:white;border:solid 5vw #00000066;display:none;transition:top .25s;padding:var(--grid-size) 0}.scroll-direction-down .paragraph--type--events__filters__overlay{top:0}.paragraph--type--events__filters__overlay.-visible{display:block}.paragraph--type--events__filters__overlay>button:first-child{position:fixed;border:none;font-size:0px;color:transparent;width:12px;height:12px;background:transparent url(/themes/frankfurter_verband_theme/dist/fonts/close--black.svg) no-repeat center;background-size:100% auto}@media only screen and (min-width: 570px){.paragraph--type--events__filters__overlay>button:first-child{top:calc(var(--grid-size) + 10px);right:var(--grid-size)}}@media only screen and (max-width: 569px){.paragraph--type--events__filters__overlay>button:first-child{top:calc(var(--grid-size) - 10px);right:calc(var(--grid-size) - 10px)}body.scrolled.scroll-direction-up .paragraph--type--events__filters__overlay>button:first-child{top:calc(var(--grid-size) + 110px)}}.paragraph--type--events__filters__overlay>button:last-child{position:absolute;bottom:var(--grid-size);left:var(--grid-size);right:var(--grid-size);border-radius:calc(var(--input-height) * .5);height:var(--input-height);border:solid 2px #262626;background:white;text-decoration:none;font-weight:bold}.paragraph--type--events__filters__overlay>button:not(:first-child):not(:last-child){margin-top:var(--grid-size);margin-bottom:var(--grid-size);display:flex;background:none;border:none}.paragraph--type--events__filters__overlay>button:not(:first-child):not(:last-child) svg{width:20px}.paragraph--type--events__filters__overlay>button:not(:first-child):not(:last-child),.paragraph--type--events__filters__overlay>ul{margin-left:var(--grid-size);margin-right:var(--grid-size)}.paragraph--type--events__filters__overlay .accordion{margin-top:-15px;overflow:hidden !important}.paragraph--type--events__filters__overlay .accordion__item{padding-bottom:5px}.paragraph--type--events__filters__overlay .accordion__item__trigger{position:relative;display:block;padding-top:15px}.paragraph--type--events__filters__overlay .accordion__item__trigger:before{background:url(/themes/frankfurter_verband_theme/dist/fonts/chevron-down.svg) no-repeat right top;content:'';width:15px;height:15px;position:absolute;right:0;top:25px}.paragraph--type--events__filters__overlay .accordion__item--expanded .accordion__item__trigger{font-weight:bold}.paragraph--type--events__filters__overlay .accordion__item--expanded .accordion__item__trigger:before{-webkit-transform:rotate(-180deg) translate(-2px, 7px);transform:rotate(-180deg) translate(-2px, 7px)}.paragraph--type--events__filters__overlay .accordion__item--expanded .accordion__item__content{margin-bottom:15px}.paragraph--type--events__filters__overlay .accordion__item__content{max-height:calc(100vh - 355px) !important;overflow-y:auto !important}.paragraph--type--events__filters__overlay .accordion__item__content>span{display:flex;align-items:flex-start}.paragraph--type--events__filters__overlay .accordion__item__content>span:first-child{margin-top:15px}.paragraph--type--events__filters__overlay .accordion__item__content>span:last-child{margin-bottom:15px}.paragraph--type--events__filters__overlay .accordion__item__content>span input[type="checkbox"]{position:relative;top:6px;margin-right:.5em}.paragraph--type--events__filters__overlay .accordion__item__content>span input[type="date"]{position:relative;margin-top:2px;margin-left:.5em;top:-3px}.paragraph--type--events__filters__overlay .accordion__item__content>span span{display:block;min-width:30px}.paragraph--type--events__filters__overlay .accordion__item:not(:first-child){border-top:solid 1px #D8D8D8}.paragraph--type--events__filter{max-width:calc(100% / 3);margin-top:1em}.paragraph--type--events__filter--seasonal_specials_only{order:2}.paragraph--type--events__filter--regular_activities_only{max-width:unset;order:1}.paragraph--type--events__filter--free_activities_only{order:3}.paragraph--type--events__filter--locations{order:4}.paragraph--type--events__filter--activities{order:5}.paragraph--type--events__filter--weekdays{order:6}.paragraph--type--events__filter--from,.paragraph--type--events__filter--until{max-width:calc(100% / 4)}.paragraph--type--events__filter--from{order:7}.paragraph--type--events__filter--until{order:8}.paragraph--type--events__filter label{display:flex;align-items:center;white-space:nowrap;cursor:pointer;padding-right:2em}.paragraph--type--events__filter label input[type=checkbox]{appearance:none;-webkit-appearance:none;display:block;width:24px;height:24px;border-radius:8px;border:solid 1px #979797;margin-right:.75em;flex-shrink:0}.paragraph--type--events__filter label input[type=checkbox]:checked{background:url(/themes/frankfurter_verband_theme/dist/fonts/check.svg) no-repeat center;background-size:16px auto}.paragraph--type--events__events{margin-top:20px}.paragraph--type--events__events__options{display:flex}@media (max-width: 549px){.paragraph--type--events__events__options{flex-wrap:wrap}}.paragraph--type--events__events__results{display:flex;flex-wrap:wrap}.paragraph--type--events__events__empty{color:#B32B23;margin-top:var(--grid-size);margin-bottom:calc(-1 * var(--grid-size))}.paragraph--type--events__events__spinner{display:block;width:80px;height:80px;margin-left:auto;margin-right:auto}.paragraph--type--events__events__spinner:after{content:" ";display:block;width:64px;height:64px;margin:8px;border-radius:50%;border-width:6px;border-style:solid;border-color:#B32B23 transparent #B32B23 transparent;-webkit-animation:event-spinner 1.2s linear infinite;animation:event-spinner 1.2s linear infinite}.paragraph--type--events__events__option--view{display:flex;margin-left:auto;align-items:center}@media (max-width: 549px){.paragraph--type--events__events__option--view{flex:1 0 100%;margin:1.5em 0 0 -1.5em}}.paragraph--type--events__events__option--view label{font-weight:600;color:#B32B23}@media (max-width: 799px){.paragraph--type--events__events__option--view label{display:none}}.paragraph--type--events__events__option--view button{display:flex;flex-direction:column;align-items:center;background:transparent;text-decoration:none;border:none;margin-left:1.5em;color:#7B7B7B}@media (max-width: 599px){.paragraph--type--events__events__option--view button span{display:none}}.paragraph--type--events__events__option--view button:not(.-selected):hover{color:black}.paragraph--type--events__events__option--view button.-selected{color:#B32B23}.paragraph--type--events__events__option--view button.-selected path{fill:#B32B23 !important}.paragraph--type--events__events__option--view button svg{margin-bottom:.5em}.paragraph--type--events__events__option--view button[value="tiles"] svg{width:40px}@media (max-width: 599px){.paragraph--type--events__events__option--view button[value="tiles"] svg{width:30px;margin-bottom:-2px}}.paragraph--type--events__events__option--view button[value="list"] svg{width:52px}@media (max-width: 599px){.paragraph--type--events__events__option--view button[value="list"] svg{width:39px;margin-bottom:-2px}}.paragraph--type--events__events--list .paragraph--type--events__events__results{flex-direction:column}.paragraph--type--events__events--list .paragraph--type--events__event{border-bottom:solid 1px #7B7B7B;padding-bottom:20px;padding-top:20px;display:flex}@media (max-width: 599px){.paragraph--type--events__events--list .paragraph--type--events__event{flex-direction:column}}.paragraph--type--events__events--list .paragraph--type--events__event__icon{width:80px;height:auto;flex-shrink:0;padding-top:1em}.paragraph--type--events__events--list .paragraph--type--events__event__icon img:last-of-type{display:none}@media (max-width: 599px){.paragraph--type--events__events--list .paragraph--type--events__event__icon+div{padding-top:25px}}@media (min-width: 600px){.paragraph--type--events__events--list .paragraph--type--events__event__icon+div{padding-left:50px}}.paragraph--type--events__events--list .paragraph--type--events__event__header{margin-bottom:.5em}.paragraph--type--events__events--list .paragraph--type--events__event__header time{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15;margin-bottom:.5em}@media only screen and (max-width: 767px){.paragraph--type--events__events--list .paragraph--type--events__event__header time{font-size:calc(var(--font-size-base) * 1 * .8)}}.paragraph--type--events__events--list .paragraph--type--events__event__header h3{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.5);line-height:1.15;color:#B32B23}@media only screen and (max-width: 767px){.paragraph--type--events__events--list .paragraph--type--events__event__header h3{font-size:calc(var(--font-size-base) * 1.5 * .8)}}.paragraph--type--events__events--list .paragraph--type--events__event__header span{display:inline-block;color:white;padding:7px 15px}.paragraph--type--events__events--list .paragraph--type--events__event__header span[data-status="0"]{display:none !important}.paragraph--type--events__events--list .paragraph--type--events__event__header span[data-status="10"]{background-color:#A9C53B}.paragraph--type--events__events--list .paragraph--type--events__event__header span[data-status="10"]:before{content:'Ausgebucht !'}.paragraph--type--events__events--list .paragraph--type--events__event__header span[data-status="20"]{background-color:#B32B23}.paragraph--type--events__events--list .paragraph--type--events__event__header span[data-status="20"]:before{content:'Entfällt !'}.paragraph--type--events__events--list .paragraph--type--events__event__table{margin-top:1em}.paragraph--type--events__events--list .paragraph--type--events__event__table div{margin-top:.5em;display:flex;align-items:center}.paragraph--type--events__events--list .paragraph--type--events__event__table div>p{display:flex}.paragraph--type--events__events--list .paragraph--type--events__event__table label{font-family:'Bree-Bold', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1);line-height:1.15;color:#B32B23;margin-right:1em}@media only screen and (max-width: 767px){.paragraph--type--events__events--list .paragraph--type--events__event__table label{font-size:calc(var(--font-size-base) * 1 * .8)}}.paragraph--type--events__events--list .paragraph--type--events__event__table label+p,.paragraph--type--events__events--list .paragraph--type--events__event__table label+p+p{margin-top:0}.paragraph--type--events__events--list .paragraph--type--events__event__table label+p+p{margin-left:1em}.paragraph--type--events__events--list .paragraph--type--events__event__table .phone,.paragraph--type--events__events--list .paragraph--type--events__event__table .email{display:flex;align-items:center}.paragraph--type--events__events--list .paragraph--type--events__event__table .phone+span,.paragraph--type--events__events--list .paragraph--type--events__event__table .email+span{margin-left:2em}.paragraph--type--events__events--list .paragraph--type--events__event__table .phone svg,.paragraph--type--events__events--list .paragraph--type--events__event__table .email svg{height:28px;width:auto;margin-right:.5em}.paragraph--type--events__events--list .paragraph--type--events__event__table .phone svg path,.paragraph--type--events__events--list .paragraph--type--events__event__table .email svg path{fill:#B32B23}.paragraph--type--events__events--list .paragraph--type--events__event__table .phone.phone svg,.paragraph--type--events__events--list .paragraph--type--events__event__table .email.phone svg{height:22px}.paragraph--type--events__events--list .paragraph--type--events__event__modal-trigger{display:none}.paragraph--type--events__events--tiles .paragraph--type--events__events__results{justify-content:space-between}@media only screen and (min-width: 1280px){.paragraph--type--events__events--tiles{margin-left:calc(-3 * var(--grid-size));margin-right:calc(-3 * var(--grid-size))}.paragraph--type--events__events--tiles .paragraph--type--events__events__options{padding-left:calc(3 * var(--grid-size));padding-right:calc(3 * var(--grid-size))}}.paragraph--type--events__events--tiles .paragraph--type--events__event{background-color:#D8D8D8;color:white;border-radius:20px;margin-top:55px;display:flex;padding:1em;flex-grow:0;flex-shrink:0;position:relative;overflow:hidden;min-height:350px;width:100%}@media (min-width: 768px){.paragraph--type--events__events--tiles .paragraph--type--events__event{width:calc((100% / 2) - 15px)}}@media (min-width: 1280px){.paragraph--type--events__events--tiles .paragraph--type--events__event{width:calc((100% / 3) - 27.5px)}}.paragraph--type--events__events--tiles .paragraph--type--events__event:before{content:'';position:absolute;z-index:1;bottom:50px;left:-25%;background:#B32B23;width:200%;height:0;padding-top:200%;border-radius:50%}.paragraph--type--events__events--tiles .paragraph--type--events__event>*{z-index:2}.paragraph--type--events__events--tiles .paragraph--type--events__event__icon{width:75px;height:auto;flex-shrink:0;padding-top:1em}.paragraph--type--events__events--tiles .paragraph--type--events__event__icon img:first-of-type{display:none}.paragraph--type--events__events--tiles .paragraph--type--events__event__icon+div{padding-left:1em}.paragraph--type--events__events--tiles .paragraph--type--events__event__header{margin-bottom:.5em}.paragraph--type--events__events--tiles .paragraph--type--events__event__header h3{font-family:'Bree-Regular', Arial, sans-serif;font-weight:normal;font-size:calc(var(--font-size-base) * 1.5);line-height:1.15}@media only screen and (max-width: 767px){.paragraph--type--events__events--tiles .paragraph--type--events__event__header h3{font-size:calc(var(--font-size-base) * 1.5 * .8)}}.paragraph--type--events__events--tiles .paragraph--type--events__event__description,.paragraph--type--events__events--tiles .paragraph--type--events__event__table div:not([data-column="zentrum"]),.paragraph--type--events__events--tiles .paragraph--type--events__event__table div label{display:none}.paragraph--type--events__events--tiles .paragraph--type--events__event__table div[data-column="zentrum"]{max-width:75%}.paragraph--type--events__events--tiles .paragraph--type--events__event__modal-trigger{position:absolute;left:1em;bottom:1em;border:solid 2px black;border-radius:54px;width:54px;height:54px;display:flex;flex-direction:column;align-items:center;justify-content:center;background:transparent}@media (pointer: fine){.paragraph--type--events__events--tiles .paragraph--type--events__event__modal-trigger{cursor:pointer}.paragraph--type--events__events--tiles .paragraph--type--events__event__modal-trigger:hover{background:white}}.paragraph--type--events__events--tiles .paragraph--type--events__event__modal-trigger svg{position:relative;left:2px;width:14px}.paragraph--type--events__pagination{position:relative;display:flex;justify-content:center;height:var(--input-height);align-items:center;margin-top:20px}@media (min-width: 700px) and (max-width: 1023px){.paragraph--type--events__pagination{justify-content:flex-end}}.paragraph--type--events__pagination .input-wrap{position:absolute;left:0}@media (max-width: 699px){.paragraph--type--events__pagination .input-wrap{display:none}}.paragraph--type--events__pagination ul{display:flex;align-items:center}.paragraph--type--events__pagination ul li{margin:0 1em;font-weight:bold}.paragraph--type--events__pagination ul li:not(.-disabled):not(.-current){cursor:pointer}.paragraph--type--events__pagination ul li:not(.-disabled):not(.-current):hover{color:#B32B23}.paragraph--type--events__pagination ul li.-current{color:#B32B23}.paragraph--type--events__pagination ul li span{display:flex;align-items:center}.paragraph--type--events__pagination button{display:flex;align-items:center;background:none;border:none;margin:0 1em}.paragraph--type--events__pagination button[class*="previous"]{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.paragraph--type--events__pagination button svg{width:10px;height:auto}.paragraph--type--events__modal{position:fixed;left:0;top:0;right:0;bottom:0;background-color:white;z-index:1000;display:flex;overflow-y:auto;flex-direction:column;justify-content:center;opacity:0;transition:opacity .7s ease-out}.paragraph--type--events__modal.-visible{opacity:1}.paragraph--type--events__modal__dismiss{position:absolute;background-color:transparent;color:black;font-size:54px;border:none;width:54px;height:54px;line-height:54px;text-decoration:none;font-family:"Times New Roman";font-weight:lighter;top:20px;right:20px}@media (min-width: 768px){.paragraph--type--events__modal__dismiss{top:50px;right:50px}}@media (pointer: fine){.paragraph--type--events__modal__dismiss{cursor:pointer}.paragraph--type--events__modal__dismiss:hover{color:#B32B23}}.paragraph--type--events__modal__content{max-width:1024px;margin-left:auto;margin-right:auto;padding:20px}.paragraph--type--events__modal__content .paragraph--type--events__event{border:0;padding:0}.paragraph--type--events__modal__content .paragraph--type--events__event button{display:none}#admin{position:fixed;z-index:100;bottom:0;right:0;left:0;background-color:#363636;padding-top:10px;font-size:16px}@media only screen and (min-width: 768px){#admin{height:40px}}@media only screen and (max-width: 767px){#admin{min-height:40px;height:auto;padding-bottom:10px;display:none}}@media only screen and (min-width: 768px) and (max-width: 1439px){#admin__inner{padding:0 var(--grid-size)}}@media only screen and (max-width: 767px){#admin__inner{padding:0 calc(var(--grid-size) * .5)}}#admin a{position:relative;text-decoration:none;transition:color .2s ease-out;margin-right:var(--font-size-base);color:#D8D8D8}@media only screen and (min-width: 768px){#admin a{display:inline-block}}#admin a:hover{color:#fff}@media only screen and (min-width: 768px){body.toolbar-fixed{margin-bottom:40px}body.is-unpublished:after{content:"Page is not published";display:block;position:fixed;bottom:42px;right:0;left:0;text-align:center;background:#fbff5b;z-index:10;max-width:1440px;margin-left:auto;margin-right:auto}}#consent-manager__fingerprint{background:rgba(0,0,0,0.75);border:none;box-shadow:0 0 40px 0 rgba(255,255,255,0.75);border-radius:50%;padding:5px;position:fixed;right:20px;bottom:20px;width:30px;height:30px;z-index:1000}#consent-manager__overlay{position:fixed;top:0;bottom:0;left:0;right:0;background:rgba(225,225,225,0.5);display:flex;justify-content:center;align-items:center;z-index:100100;font-family:sans-serif;font-size:12px}#consent-manager__overlay *{font-size:12px}#consent-manager__overlay ul{margin-top:1em;list-style:none;overflow:auto;padding:0;max-height:25vh}#consent-manager__overlay ul li{display:flex;padding-left:2rem;padding-right:2rem;align-items:center}@media (max-width: 600px){#consent-manager__overlay ul li{padding-left:1rem;padding-right:1rem}}#consent-manager__overlay ul li:nth-child(2n-1){background-color:#F0F0F0}#consent-manager__overlay ul li:nth-child(2n-1) input:after{background-color:#F0F0F0}#consent-manager__overlay ul li:nth-child(2n){background-color:#fbfbfb}#consent-manager__overlay ul li:nth-child(2n) input:after{background-color:#fbfbfb}#consent-manager__overlay ul li p{width:calc(100% - 100px);display:flex;flex-wrap:wrap;align-items:center}@media (max-width: 600px){#consent-manager__overlay ul li p{width:calc(100% - 50px)}}#consent-manager__overlay ul li p span{min-width:19em}@media (max-width: 600px){#consent-manager__overlay ul li p span{min-width:0;width:calc(100% - 30px)}}#consent-manager__overlay ul li p a{display:none;margin-top:14px;width:100%}#consent-manager__overlay ul li p input[type="checkbox"]{width:20px;height:20px;border:none}#consent-manager__overlay ul li p input[type="checkbox"]:after{cursor:pointer;content:" ";display:block;width:20px;height:20px;background-repeat:no-repeat;background-position:center;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7.41" viewBox="0 0 12 7.41"><path d="M7.41,8.59,12,13.17l4.59-4.58L18,10l-6,6L6,10Z" transform="translate(-6 -8.59)"/></svg>')}#consent-manager__overlay ul li p input[type="checkbox"]:checked+a{display:block}#consent-manager__overlay>div{position:absolute;bottom:0;right:5vw;background:#fff;color:#000;padding:20px;width:80vw;margin-left:5vw;max-width:500px;border-radius:20px 20px 0 0;box-sizing:border-box}@media (max-width: 600px){#consent-manager__overlay>div{width:100vw;margin:0;padding:10px;right:0}}#consent-manager__overlay>div *{color:inherit}#consent-manager__overlay>div h4{font-size:2.5em;margin:0;font-weight:normal;line-height:1;margin-bottom:0.5em}#consent-manager__overlay>div label{cursor:pointer;min-width:250px}#consent-manager__overlay>div>p{line-height:1.25}#consent-manager__overlay .switch{position:relative;display:inline-block;width:51px;height:24px;min-width:0;margin-right:0}@media (max-width: 600px){#consent-manager__overlay .switch{height:16px;width:43px;margin-left:4px}}#consent-manager__overlay .switch input{opacity:0;width:0;height:0}#consent-manager__overlay .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}#consent-manager__overlay .slider:before{position:absolute;content:"";height:16px;width:16px;left:4px;bottom:4px;background-color:white;transition:.4s}@media (max-width: 600px){#consent-manager__overlay .slider:before{width:12px;height:12px;left:2px;bottom:2px}}#consent-manager__overlay input:checked+.slider{background-color:#68d048}#consent-manager__overlay input:focus+.slider{box-shadow:0 0 1px #68d048}#consent-manager__overlay input:checked+.slider:before{-webkit-transform:translateX(26px);transform:translateX(26px)}#consent-manager__overlay .slider.round{border-radius:24px}#consent-manager__overlay .slider.round:before{border-radius:50%}@media (max-width: 650px){#consent-manager__overlay li{display:flex;flex-wrap:wrap}#consent-manager__overlay>div label+label{min-width:0;max-width:calc(100% - 93px)}#consent-manager__overlay a{width:100%;display:block}}#consent-manager__button-container{display:flex;flex-direction:row-reverse;justify-content:space-between;margin-top:1em}#consent-manager__button-container button{border-radius:20px;cursor:pointer;padding:10px 20px;transition:background-color 200ms ease-out;text-decoration:none}#consent-manager__button-container button:first-of-type{color:#fff;background-color:#41AAE1;border:1px solid #41AAE1}#consent-manager__button-container button:first-of-type:hover{background-color:#0a6696}#consent-manager__button-container button:last-of-type{background-color:transparent;border:1px solid #e1e1e1}#consent-manager__button-container button:last-of-type:hover{background-color:transparent}@media (max-width: 650px){#consent-manager__button-container{flex-direction:column-reverse}#consent-manager__button-container button{margin-top:0.5em}}iframe[data-src]+.pixel-two-click,.pixel-two-click[data-replacement]{position:absolute;top:0;right:0;left:0;padding-bottom:calc(100% / 16 * 9);background-color:#000;background-repeat:no-repeat;background-position:center;background-size:100px;transition:background-color 200ms ease-out;cursor:pointer}iframe[data-src]+.pixel-two-click:hover,.pixel-two-click[data-replacement]:hover{background-color:#333}iframe[data-src]+.pixel-two-click[data-vendor="youtube"],.pixel-two-click[data-replacement][data-vendor="youtube"]{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="rgb(200,200,200)" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg>')}iframe[data-src]+.pixel-two-click[data-vendor="vimeo"],.pixel-two-click[data-replacement][data-vendor="vimeo"]{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="rgb(200,200,200)" d="M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z"></path></svg>')}iframe[data-src]+.pixel-two-click[data-vendor="mailchimp_embed"],.pixel-two-click[data-replacement][data-vendor="mailchimp_embed"]{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="rgb(200, 200, 200)" d="M330.61 243.52a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.49 72.49 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.85 102.85 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.86 106.86 0 0 1 362.55 421a132.45 132.45 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.86 41.86 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z"></path></svg>')}iframe[data-src]+.pixel-two-click[data-vendor="google_maps"],.pixel-two-click[data-replacement][data-vendor="google_maps"]{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="rgb(200, 200, 200)" d="M0 117.66v346.32c0 11.32 11.43 19.06 21.94 14.86L160 416V32L20.12 87.95A32.006 32.006 0 0 0 0 117.66zM192 416l192 64V96L192 32v384zM554.06 33.16L416 96v384l139.88-55.95A31.996 31.996 0 0 0 576 394.34V48.02c0-11.32-11.43-19.06-21.94-14.86z"></path></svg>')}.pixel-two-click[data-replacement]{position:static}#page-404,#page-403{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:calc(100vh - 200px - 120px)}#page-404>div:first-child,#page-403>div:first-child{font-size:128px}#page-404>div:last-child,#page-403>div:last-child{font-size:32px}

