.modal * {
    box-sizing: border-box
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,0.9);
    opacity: 0;
    cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"),auto
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .modal {
        -webkit-backdrop-filter:blur(12px);
        backdrop-filter: blur(12px);
    }
}

.modal--confirm .modal-box {
    text-align: center
}

.modal--noOverlayClose {
    cursor: default
}

.modal--noClose .modal__close {
    display: none
}

.modal__close {
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 1000;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer
}

.modal__close svg * {
    fill: currentColor
}

.modal__closeLabel {
    display: none
}

.modal__close:hover {
    color: #fff
}

.modal-box {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 60%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform, opacity
}

.modal-box__content {
    padding: 3rem 3rem
}

.modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto
}

.modal-box__footer::after {
    display: table;
    clear: both;
    content: ""
}

.modal-box__footer--sticky {
    position: fixed;
    bottom: -200px;
    z-index: 10001;
    opacity: 1;
    transition: bottom .3s ease-in-out .3s
}

.modal-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden
}

.modal--visible .modal-box__footer {
    bottom: 0
}

.modal--visible {
    visibility: visible;
    opacity: 1
}

.modal--visible .modal-box {
    -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards
}

.modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh
}

.modal-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease
}

.modal-btn--primary {
    background-color: #3498db
}

.modal-btn--danger {
    background-color: #e74c3c
}

.modal-btn--default {
    background-color: #34495e
}

.modal-btn--pull-left {
    float: left
}

.modal-btn--pull-right {
    float: right
}
.teaser .cmp-teaser {
    display: flex;
    flex-direction: column
}
.teaser .cmp-teaser__image {
    width: 100%;
    flex: 1
}
.teaser .cmp-teaser__content {
    color: var(--textColor-body-1);
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    width: 100%;
    gap: 16px
}
.teaser .cmp-teaser__content p {
    margin: 0
}

.teaser .cmp-teaser__action-container {
    margin-top: auto
}

.teaser .cmp-teaser__action-link {
    background-color: var(--button-primary-bgColor);
    border: 1px solid var(--button-primary-borderColor);
    color: var(--button-primary-textColor);
    display: inline-block;
    font-family: "Inter-Bold";
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center
}

.teaser .cmp-teaser__action-link:hover {
    background-color: var(--button-primary-bgColor);
    border-color: var(--button-primary-borderColor);
    color: var(--button-primary-textColor);
    opacity: 0.8;
    text-decoration: none
}

.teaser .cmp-teaser__action-link:focus,.teaser .cmp-teaser__action-link:focus-visible {
    outline: -webkit-focus-ring-color auto 1px
}

.teaser .cmp-teaser__action-link .fa,.teaser .cmp-teaser__action-link img {
    margin-left: 5px
}

.teaser .cmp-teaser__pretitle {
    position: relative;
    top: 10px;
    margin-top: -10px
}

.teaser .cmp-teaser__subtitle {
    margin-top: -10px
}

.teaser .cmp-teaser__footnotes {
    margin: -10px 0 0 0
}

.teaser .cmp-teaser__footnotes a {
    font-family: "Inter-Regular";
    font-size: 18px;
    line-height: 28px;
    opacity: 0.96
}

.teaser--text-left .cmp-teaser__content>* {
    text-align: left;
    margin-right: auto;
    margin-left: 0
}

.teaser--text-center .cmp-teaser__content * {
    text-align: center;
    margin-right: auto;
    margin-left: auto
}

.teaser--text-right .cmp-teaser__content * {
    text-align: right;
    margin-right: 0;
    margin-left: auto
}

.teaser--button-secondary .cmp-teaser__action-link {
    background-color: rgba(0,0,0,0);
    border: 1px solid var(--button-secondary-borderColor);
    color: var(--button-secondary-textColor);
    display: inline-block;
    font-family: "Inter-Bold";
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center
}

.teaser--button-secondary .cmp-teaser__action-link:hover {
    background-color: rgba(0,0,0,0);
    border-color: var(--button-secondary-borderColor);
    color: var(--button-secondary-textColor);
    opacity: 0.8;
    text-decoration: none
}

.teaser--button-secondary .cmp-teaser__action-link:focus,.teaser--button-secondary .cmp-teaser__action-link:focus-visible {
    outline: -webkit-focus-ring-color auto 1px
}

.teaser--button-secondary .cmp-teaser__action-link .fa,.teaser--button-secondary .cmp-teaser__action-link img {
    margin-left: 5px
}

.teaser--button-tertiary .cmp-teaser__action-link {
    background-color: rgba(0,0,0,0);
    border: 1px solid var(--button-tertiary-borderColor);
    color: var(--button-tertiary-textColor);
    display: inline-block;
    font-family: "Inter-Bold";
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center
}

.teaser--button-tertiary .cmp-teaser__action-link:hover {
    background-color: rgba(0,0,0,0);
    border-color: var(--button-tertiary-borderColor);
    color: var(--button-tertiary-textColor);
    opacity: 0.8;
    text-decoration: none
}

.teaser--button-tertiary .cmp-teaser__action-link:focus,.teaser--button-tertiary .cmp-teaser__action-link:focus-visible {
    outline: -webkit-focus-ring-color auto 1px
}

.teaser--button-tertiary .cmp-teaser__action-link .fa,.teaser--button-tertiary .cmp-teaser__action-link img {
    margin-left: 5px
}

.teaser--bgColor-supporting-1 .cmp-teaser__content {
    background-color: var(--bgColor-supporting-1)
}

.teaser--bgColor-supporting-2 .cmp-teaser__content {
    background-color: var(--bgColor-supporting-2)
}
.teaser--image-top-text-bottom .cmp-teaser {
    flex-direction: column
}
.teaser--image-top-text-bottom .cmp-teaser__image {
    order: 0;
    padding: 0;
    width: 100%
}

.teaser--image-top-text-bottom .cmp-teaser .cmp-tooltip {
    text-align: center
}

.teaser--image-top-text-bottom .cmp-teaser__content {
    order: 1;
    padding: 24px 16px;
    width: 100%;
    text-align: center
}
.teaser--home-hero {
    padding: 0;
    position: relative;
    overflow: hidden
}

.teaser--home-hero .cmp-teaser {
    align-items: center;
    display: block
}

.teaser--home-hero .cmp-teaser__image {
    width: 100%;
    padding: 0;
    padding-right: 0;
    max-height: 60vh;
    overflow: hidden;
    /*background: #000*/
}

.teaser--home-hero .cmp-teaser__image .cmp-image__image {
    height: auto;
    display: block;
    /*opacity: 0.75;*/
    width: 100%
}

.teaser--home-hero .cmp-teaser__content {
    max-width: 100%;
    width: 100%;
    margin: auto;
    background-color: transparent;
    color: var(--textColor-body-2);
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    padding: 20px 16px;
    transform: translate(-50%, -50%);
    text-align: left;
    gap: 16px
}
.teaser--home-hero .cmp-teaser__pretitle {
    width: 100%
}
.teaser--home-hero .cmp-teaser__subtitle {
    width: 100%
}
.teaser--home-hero .cmp-teaser__title a:hover,.teaser--home-hero .cmp-teaser__title a:active,.teaser--home-hero .cmp-teaser__title a:focus {
    text-decoration: none
}

.teaser--home-hero .cmp-teaser__description {
    font-family: "Inter-Regular";
    font-size: 18px;
    line-height: 28px;
    margin-top: 0;
    overflow: auto;
    width: 100%
}



@media (max-width: 540px) {
    .modal {
        top:0px;
        display: block;
        padding-top: 60px;
        width: 100%
    }

    .modal-box {
        width: auto;
        border-radius: 0
    }

    .modal-box__content {
        overflow-y: scroll
    }

    .modal--noClose {
        top: 0
    }

    .modal--noOverlayClose {
        padding-top: 0
    }

    .modal-box__footer .modal-btn {
        display: block;
        float: none;
        margin-bottom: 1rem;
        width: 100%
    }

    .modal__close {
        top: 0;
        right: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 60px;
        border: none;
        background-color: #2c3e50;
        box-shadow: none;
        color: #fff
    }

    .modal__closeLabel {
        display: inline-block;
        vertical-align: middle;
        font-size: 1.6rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
    }

    .modal__closeIcon {
        display: inline-block;
        margin-right: .8rem;
        width: 1.6rem;
        vertical-align: middle;
        font-size: 0
    }
}

@-webkit-keyframes scale {
    0% {
        opacity: 0;
        transform: scale(0.9)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes scale {
    0% {
        opacity: 0;
        transform: scale(0.9)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

:root {
    --bgColor-core-1: #830051;
    --bgColor-core-2: #4F0031;
    --bgColor-core-3: #D0006F;
    --bgColor-secondary-1: #F0AB00;
    --bgColor-secondary-2: #9DB0AC;
    --bgColor-secondary-3: #3C4242;
    --bgColor-supporting-1: #EBEFEE;
    --bgColor-supporting-2: #fff;
    --textColor-body-1: #3C4242;
    --textColor-body-2: #fff;
    --textColor-placeholder-1: #B2B4B4;
    --textColor-title-1: #830051;
    --textColor-title-2: #D0006F;
    --textColor-warning: #D0006F;
    --borderColor-1: #EBEFEE;
    --borderColor-2: #D8DFDE;
    --borderColor-3: #D8DADA;
    --borderColor-4: #3C4242;
    --borderColor-5: #fff;
    --borderColor-6: #D0006F;
    --button-primary-bgColor: #D0006F;
    --button-secondary-bgColor: #fff;
    --button-tertiary-bgColor: #fff;
    --button-primary-borderColor: #D0006F;
    --button-secondary-borderColor: #D0006F;
    --button-tertiary-borderColor: #3C4242;
    --button-primary-textColor: #fff;
    --button-secondary-textColor: #D0006F;
    --button-tertiary-textColor: #3C4242;
    --popup-backdrop-color: #3C4242
}

*,*:before,*:after {
    box-sizing: border-box
}

html,body {
    font-family: "Inter-Regular";
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: var(--textColor-body-1);
    font-weight: 400;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden
}

a {
    text-decoration: underline;
    color: inherit
}

a:hover {
    color: var(--textColor-title-2)
}

button,optgroup,select,textarea {
    font: inherit
}

input {
    font: inherit;
    margin: 0
}

ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
    padding-left: 0
}

ol {
    list-style-position: inside;
    padding-left: 0;
    margin: 0
}

.hidden {
    display: none
}

.cmp-image {
    line-height: 0
}

@media screen and (max-width: 479px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (min-width: 1536px) {
    .p,p,p * {
        font-family:"Inter-Regular";
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        letter-spacing: normal;
        margin: 0px
    }
}

@media screen and (max-width: 479px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 56px;
        line-height: 60px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 56px;
        line-height: 60px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 56px;
        line-height: 60px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 56px;
        line-height: 60px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1536px) {
    .h1,h1,h1 * {
        font-family:"Lexia";
        font-size: 56px;
        line-height: 60px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (max-width: 479px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 46px;
        line-height: 50px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 46px;
        line-height: 50px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 46px;
        line-height: 50px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 46px;
        line-height: 50px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1536px) {
    .h2,h2,h2 * {
        font-family:"Lexia";
        font-size: 46px;
        line-height: 50px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (max-width: 479px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1536px) {
    .h3,h3,h3 * {
        font-family:"Lexia";
        font-size: 36px;
        line-height: 40px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (max-width: 479px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1536px) {
    .h4,h4,h4 * {
        font-family:"Lexia";
        font-size: 26px;
        line-height: 34px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (max-width: 479px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 19px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 19px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 19px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1536px) {
    .h5,h5,h5 * {
        font-family:"Lexia";
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (max-width: 479px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

@media screen and (min-width: 1536px) {
    .h6,h6,h6 * {
        font-family:"Lexia";
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        letter-spacing: normal;
        margin: 0;
        text-decoration: none
    }
}

.cmp-experiencefragment--footer {
    max-width: 100%;
    width: 100%;
    margin: auto
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer {
        padding-left:20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer {
        padding-left:20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer {
        max-width:1180px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer {
        max-width:1180px
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer {
        max-width:1180px
    }
}

@media screen and (max-width: 479px) {
    .cmp-experiencefragment--footer {
        padding-left:16px;
        padding-right: 16px
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .cmp-experiencefragment--footer {
        padding-left:16px;
        padding-right: 16px
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .cmp-experiencefragment--footer {
        padding-left:16px;
        padding-right: 16px
    }
}

.cmp-experiencefragment--footerSocial {
    border-top: 1px solid var(--borderColor-1);
    padding: 20px 0
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footerSocial {
        padding:40px 0
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footerSocial {
        padding:40px 0
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footerSocial {
        padding:40px 0
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footerSocial {
        padding:40px 0
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footerSocial {
        padding:40px 0
    }
}

@media screen and (max-width: 479px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container.responsivegrid {
        width:calc(80% + 16px);
        display: block;
        margin: 0 auto;
        float: none
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container.responsivegrid {
        width:75%;
        display: block;
        margin: 0 auto;
        float: none
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container.responsivegrid {
        width:75%;
        display: block;
        margin: 0 auto;
        float: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(1) {
        width:100%;
        max-width: 300px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(1) {
        width:100%;
        max-width: 300px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(1) {
        width:100%;
        max-width: 300px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(1) {
        width:100%;
        max-width: 300px
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(1) {
        width:100%;
        max-width: 300px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) {
        width:calc(100% - 300px)
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) {
        width:calc(100% - 300px)
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) {
        width:calc(100% - 300px)
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) {
        width:calc(100% - 300px)
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) {
        width:calc(100% - 300px)
    }
}

.cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p {
    margin-top: 0;
    margin-bottom: 16px
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p {
        margin-bottom:24px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p {
        margin-bottom:24px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p {
        margin-bottom:24px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p {
        margin-bottom:24px
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p {
        margin-bottom:24px
    }
}

.cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p:last-child {
    margin-bottom: 0
}

.cmp-experiencefragment--footer>.cmp-container>.aem-Grid>.container:nth-child(2) .text p a {
    text-decoration: none
}

.cmp-experiencefragment--footer .cmp-image {
    width: auto;
    max-width: 165px;
    height: auto;
    margin: auto
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer .cmp-image {
        margin:0;
        max-width: 165px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer .cmp-image {
        margin:0;
        max-width: 165px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer .cmp-image {
        margin:0;
        max-width: 165px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer .cmp-image {
        margin:0;
        max-width: 165px
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer .cmp-image {
        margin:0;
        max-width: 165px
    }
}

.cmp-experiencefragment--footer .text {
    text-align: center;
    padding: 0
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer .text {
        text-align:left
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer .text {
        text-align:left
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer .text {
        text-align:left
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer .text {
        text-align:left
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer .text {
        text-align:left
    }
}

.cmp-experiencefragment--footer #FooterLinks .text {
    width: 100%;
    margin: 0
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #FooterLinks .text {
        width:50%;
        max-width: calc(50% - 16%);
        padding-left: 16%;
        box-sizing: content-box
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #FooterLinks .text {
        width:50%;
        max-width: calc(50% - 16%);
        padding-left: 16%;
        box-sizing: content-box
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #FooterLinks .text {
        width:50%;
        max-width: calc(50% - 16%);
        padding-left: 16%;
        box-sizing: content-box
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #FooterLinks .text {
        width:50%;
        max-width: calc(50% - 16%);
        padding-left: 16%;
        box-sizing: content-box
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #FooterLinks .text {
        width:50%;
        max-width: calc(50% - 16%);
        padding-left: 16%;
        box-sizing: content-box
    }
}

.cmp-experiencefragment--footer #footer-lastrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #footer-lastrow {
        margin-top:40px;
        padding-top: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #footer-lastrow {
        margin-top:40px;
        padding-top: 20px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #footer-lastrow {
        margin-top:40px;
        padding-top: 20px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #footer-lastrow {
        margin-top:40px;
        padding-top: 20px
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #footer-lastrow {
        margin-top:40px;
        padding-top: 20px
    }
}

.cmp-experiencefragment--footer #footer-lastrow .container.responsivegrid {
    width: 100%
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #footer-lastrow .container.responsivegrid {
        width:50%
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #footer-lastrow .container.responsivegrid {
        width:50%
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #footer-lastrow .container.responsivegrid {
        width:50%
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #footer-lastrow .container.responsivegrid {
        width:50%
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #footer-lastrow .container.responsivegrid {
        width:50%
    }
}

.cmp-experiencefragment--footer #footer-social {
    display: flex;
    align-items: center;
    justify-content: center
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #footer-social {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #footer-social {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #footer-social {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #footer-social {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #footer-social {
        justify-content:flex-start
    }
}

.cmp-experiencefragment--footer #footer-social .masterContentList {
    width: 100%
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist {
    width: 100%;
    flex-direction: column
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist__items {
    align-items: center;
    justify-content: center;
    width: auto;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 0;
    gap: 24px
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #footer-social .cmp-masterlist__items {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #footer-social .cmp-masterlist__items {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #footer-social .cmp-masterlist__items {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #footer-social .cmp-masterlist__items {
        justify-content:flex-start
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #footer-social .cmp-masterlist__items {
        justify-content:flex-start
    }
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist__item {
    width: 24px;
    height: 24px;
    padding: 0;
    min-width: auto;
    border: none;
    flex-basis: auto;
    margin: 0;
    border-radius: 0;
    flex: 0 0 auto
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist__item-cta-link {
    background-color: transparent;
    border: 0 none;
    color: inherit;
    display: inline;
    padding: unset;
    text-align: left;
    border-radius: 0;
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    text-decoration: underline
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist__item-cta-link:hover {
    color: var(--textColor-title-2)
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist__item-image {
    border-radius: 0px;
    height: 24px;
    width: 24px;
    background-size: auto auto;
    background-position: center center;
    min-height: 0;
    max-height: unset;
    padding: 0;
    margin: 0
}

.cmp-experiencefragment--footer #footer-social .cmp-masterlist__item-content {
    display: none
}

.cmp-experiencefragment--footer #footer-progetto>.aem-Grid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid {
        justify-content:right;
        margin-top: 0px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid {
        justify-content:right;
        margin-top: 0px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid {
        justify-content:right;
        margin-top: 0px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid {
        justify-content:right;
        margin-top: 0px
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid {
        justify-content:right;
        margin-top: 0px
    }
}

.cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text {
    font-family: "Inter-Medium";
    font-size: 12px;
    line-height: 20px;
    width: auto;
    margin: 6px 6px 0 0
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text {
        width:auto;
        margin: 12px 12px 0 0
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text {
        width:auto;
        margin: 12px 12px 0 0
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text {
        width:auto;
        margin: 12px 12px 0 0
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text {
        width:auto;
        margin: 12px 12px 0 0
    }
}

@media screen and (min-width: 1536px) {
    .cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text {
        width:auto;
        margin: 12px 12px 0 0
    }
}

.cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text .cmp-text {
    padding: 0
}

.cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.text p {
    font-family: "Lexia";
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    text-align: right
}

.cmp-experiencefragment--footer #footer-progetto>.aem-Grid>.image {
    width: auto;
    margin: 0
}






@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser .cmp-teaser {
        flex-direction:row
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser .cmp-teaser {
        flex-direction:row
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser .cmp-teaser {
        flex-direction:row
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser .cmp-teaser {
        flex-direction:row
    }
}

@media screen and (min-width: 1536px) {
    .teaser .cmp-teaser {
        flex-direction:row
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser .cmp-teaser__image {
        order:0;
        padding: 0 15px 0 0;
        width: 50%
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser .cmp-teaser__image {
        order:0;
        padding: 0 15px 0 0;
        width: 50%
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser .cmp-teaser__image {
        order:0;
        padding: 0 15px 0 0;
        width: 50%
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser .cmp-teaser__image {
        order:0;
        padding: 0 15px 0 0;
        width: 50%
    }
}

@media screen and (min-width: 1536px) {
    .teaser .cmp-teaser__image {
        order:0;
        padding: 0 15px 0 0;
        width: 50%
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser .cmp-teaser__content {
        order:2;
        width: 50%;
        padding: 0 0 0 15px;
        text-align: left;
        flex-direction: column
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser .cmp-teaser__content {
        order:2;
        width: 50%;
        padding: 0 0 0 15px;
        text-align: left;
        flex-direction: column
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser .cmp-teaser__content {
        order:2;
        width: 50%;
        padding: 0 0 0 15px;
        text-align: left;
        flex-direction: column
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser .cmp-teaser__content {
        order:2;
        width: 50%;
        padding: 0 0 0 15px;
        text-align: left;
        flex-direction: column
    }
}

@media screen and (min-width: 1536px) {
    .teaser .cmp-teaser__content {
        order:2;
        width: 50%;
        padding: 0 0 0 15px;
        text-align: left;
        flex-direction: column
    }
}



@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--text-image .cmp-teaser__content {
        order:1;
        padding-left: 0;
        padding-right: 15px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--text-image .cmp-teaser__content {
        order:1;
        padding-left: 0;
        padding-right: 15px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--text-image .cmp-teaser__content {
        order:1;
        padding-left: 0;
        padding-right: 15px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--text-image .cmp-teaser__content {
        order:1;
        padding-left: 0;
        padding-right: 15px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--text-image .cmp-teaser__content {
        order:1;
        padding-left: 0;
        padding-right: 15px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--text-image .cmp-teaser__image {
        order:2;
        padding-left: 15px;
        padding-right: 0
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--text-image .cmp-teaser__image {
        order:2;
        padding-left: 15px;
        padding-right: 0
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--text-image .cmp-teaser__image {
        order:2;
        padding-left: 15px;
        padding-right: 0
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--text-image .cmp-teaser__image {
        order:2;
        padding-left: 15px;
        padding-right: 0
    }
}

@media screen and (min-width: 1536px) {
    .teaser--text-image .cmp-teaser__image {
        order:2;
        padding-left: 15px;
        padding-right: 0
    }
}



@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--image-top-text-bottom .cmp-teaser {
        border-radius:8px;
        overflow: hidden
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--image-top-text-bottom .cmp-teaser {
        border-radius:8px;
        overflow: hidden
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--image-top-text-bottom .cmp-teaser {
        border-radius:8px;
        overflow: hidden
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--image-top-text-bottom .cmp-teaser {
        border-radius:8px;
        overflow: hidden
    }
}

@media screen and (min-width: 1536px) {
    .teaser--image-top-text-bottom .cmp-teaser {
        border-radius:8px;
        overflow: hidden
    }
}



@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--image-top-text-bottom .cmp-teaser__content {
        padding:24px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--image-top-text-bottom .cmp-teaser__content {
        padding:24px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--image-top-text-bottom .cmp-teaser__content {
        padding:24px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--image-top-text-bottom .cmp-teaser__content {
        padding:24px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--image-top-text-bottom .cmp-teaser__content {
        padding:24px
    }
}



@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--home-hero .cmp-teaser__content {
        padding-left:20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--home-hero .cmp-teaser__content {
        padding-left:20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--home-hero .cmp-teaser__content {
        max-width:1220px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--home-hero .cmp-teaser__content {
        max-width:1220px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--home-hero .cmp-teaser__content {
        max-width:1220px
    }
}

@media screen and (max-width: 479px) {
    .teaser--home-hero .cmp-teaser__content {
        padding-left:16px;
        padding-right: 16px
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .teaser--home-hero .cmp-teaser__content {
        padding-left:16px;
        padding-right: 16px
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .teaser--home-hero .cmp-teaser__content {
        padding-left:16px;
        padding-right: 16px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--home-hero .cmp-teaser__content {
        padding:40px 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--home-hero .cmp-teaser__content {
        padding:40px 20px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--home-hero .cmp-teaser__content {
        padding:40px 20px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--home-hero .cmp-teaser__content {
        padding:40px 20px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--home-hero .cmp-teaser__content {
        padding:40px 20px
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--home-hero .cmp-teaser__pretitle {
        max-width:577px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--home-hero .cmp-teaser__pretitle {
        max-width:577px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--home-hero .cmp-teaser__pretitle {
        max-width:577px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--home-hero .cmp-teaser__pretitle {
        max-width:577px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--home-hero .cmp-teaser__pretitle {
        max-width:577px
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--home-hero .cmp-teaser__subtitle {
        max-width:577px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--home-hero .cmp-teaser__subtitle {
        max-width:577px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--home-hero .cmp-teaser__subtitle {
        max-width:577px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--home-hero .cmp-teaser__subtitle {
        max-width:577px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--home-hero .cmp-teaser__subtitle {
        max-width:577px
    }
}



@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--home-hero .cmp-teaser__description {
        max-width:577px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--home-hero .cmp-teaser__description {
        max-width:577px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--home-hero .cmp-teaser__description {
        max-width:577px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--home-hero .cmp-teaser__description {
        max-width:577px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--home-hero .cmp-teaser__description {
        max-width:577px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .teaser--home-hero .cmp-teaser__action-container {
        max-width:577px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .teaser--home-hero .cmp-teaser__action-container {
        max-width:577px
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .teaser--home-hero .cmp-teaser__action-container {
        max-width:577px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1535px) {
    .teaser--home-hero .cmp-teaser__action-container {
        max-width:577px
    }
}

@media screen and (min-width: 1536px) {
    .teaser--home-hero .cmp-teaser__action-container {
        max-width:577px
    }
}
