/*
******************************************************************

Main CSS: Standard-Tags, Canvases

(c) sinntun.codes
******************************************************************
*/


/* Styles normalisieren
*********************************************************** */

* {
    padding: 0;
    margin: 0;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 22px;
}

/* gegen Springen der Seite im Browser */

html {
    height: 100%;
    padding: 0 0 0 0;
}

* {

}

h1 {
    font-size: 60px;
    font-family: 'Noto Serif', sans-serif;
    font-weight: 400;
}

h2 {
    font-size: 43px;
    margin-bottom: 20px;
    display: block;
    font-family: 'Noto Serif', sans-serif;
    font-weight: 400;
}

h3 {
    font-family: 'Noto Serif', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 15px;
}

p {
    line-height: 27px;
}

@media only screen and (max-width: 520px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 22px;
    }
}

ol,
ul {
    list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
}

table {
    border-collapse: collapse;
}

fieldset,
img {
    border: 0;
}

caption,
th {
    text-align: left;
}

.clear {
    clear: both;
}

input:focus-visible {
    outline: none;
}


/*****************************************************************
**** Document
******************************************************************/

html {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif !important;
}

body {
    height: 100%;
    font-size: 16px;
}

/*****************************************************************
**** Common Selectors
******************************************************************/

h2 {

}


li {
    width: auto;
    height: auto;
    float: left;
}

li[data-list='bullet'] {
    list-style: initial;
}

li,
ul,
ol {
    font-size: inherit;
    box-sizing: border-box;
}

a {
    font-size: 16px;
    /*line-height: 21px;*/
    text-decoration: none;
    /*z-index: 999;*/
}

img {
    width: 100%;
    height: auto;
    display: block;
}


/*
**** colors
******************************************************************/
.background {
    padding: 50px;
}

.black {
    color: black;
}

.white {
    color: white;
}

/*.grey {
    background-color: #e4e4e4;
}*/

.yellow {
    background-color: #5E7461;
}

.green {
    background-color: #EDEFEB;
}

/*.green {
    background-color: green;
}

.blue {
    background-color: blue;
}*/
/*****************************************************************
**** Commons Elements (PageElement-übergreifend)
******************************************************************/
/*** .content-container
******************************************************************/
@media screen and (max-width: 400px) {
    .content-container {
        flex-direction: column;
    }
}


/*** .contentbox
allgemeines Content Element
******************************************************************/
.contentbox {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin-bottom: 120px;
}


@media only screen and (max-width: 520px) {
    .contentbox {
        margin-bottom: 100px;
    }
}

/*
**** text
******************************************************************/
.text {
    box-sizing: border-box;
}

.image-copyright {
    color: #646464;
    font-size: 12px;
    text-align: right;
}

/*
**** texteditor
******************************************************************/
.texteditor p[linebreak='true'] {
    margin-top: -18px;
}

.texteditor p[linebreak='true']:first-child {
    margin-top: 0;
}

.texteditor a {
    text-decoration: underline;
}

.texteditor > :not(:last-child) {
    margin-bottom: 18px;
}

.texteditor ol,
.texteditor ul {
    margin-left: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.texteditor ol li[data-list ='bullet'] {
    list-style: '• ';
}


/*** links
******************************************************************/
ul.linklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.linklist a {
    color: #000000;
}


.link-container.top {
    margin-bottom: 20px;
}

.link-int::before,
.link-ext::before,
.link-more::before,
.download-link::before,
.phone::before,
.fax::before,
.mobile::before,
.mail::before,
.button-back::before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    display: inline-block;
}

.link-int::before,
.link-more::before {
    content: '\f32b';
    width: 20px;
}

.link-ext::before {
    content: '\e09f';
    width: 20px;
}


/*** button
******************************************************************/
.button {
    background-color: #5E7461;
    color: #FFEFE0;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    display: inline-block;
}

.button-back::before {
    content: '\f191';
    width: 30px;
}


/*** back-to-top
******************************************************************/
.back-to-top {
    position: fixed;
    right: 25px;
    z-index: 4050;
    bottom: 50px;
    background: #A7B09B;
    padding: 8px 12px;
    cursor: pointer;
    color: #000;
    width: 66px;
    height: 66px;
    box-sizing: border-box;
    border: 2px solid #5E7461;

    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: initial;
}

.back-to-top .icon:before {
    content: '\f077';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1300px) {
    .back-to-top {
        width: 58px;
        height: 58px;
        bottom: 100px;
    }

    .back-to-top .icon:before {
        font-size: 26px;
    }
}

@media only screen and (max-width: 1024px) {
    .back-to-top .icon:before {
        font-size: 24px;
    }
}

@media screen and (max-width: 640px) {
    .back-to-top {
        width: 45px;
        height: 45px;
    }

    .back-to-top .icon:before {
        font-size: 20px;
    }
}


/*** download-links
******************************************************************/
.download-item {
    display: block;
    clear: both;
}

.download-link {
    box-sizing: border-box;
    display: block;
}

.download-link::before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f56d';
    width: 30px;
    display: inline-block;
    font-size: 18px;
    margin-right: 5px;
    flex-shrink: 0;
    color: #5E7461;
}


/*****************************************************************
*** Grid / Canvases
******************************************************************/
#page-canvas {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin: 0 auto 0;
}

#main-navigation {
    display: inline-block;
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
    overflow: visible;
}

#content-canvas {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    /*max-width: 1400px;*/
    margin: auto;
    padding-top: 45px;
}



#main-canvas {
    width: 75%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    float: left;
}

.pagetype-start #main-canvas {
    width: calc(100% - 350px);
}

.pagetype-standard #main-canvas {
    width: calc(100% - 350px);
}

.pageelement-canvas {
    width: 100%;
    margin-top: 0;
}


@media only screen and (max-width: 1450px) {

    #main-canvas {
        padding: 55px 25px 0;
    }

}

@media only screen and (max-width: 1300px) {
    #main-navigation,
    #meta-navigation {
        display: none !important;
    }
}

@media only screen and (max-width: 1024px) {

    #info-canvas {
        width: 100%;
        margin: 0 0;
        max-width: 100%;
        padding-left: 0;
    }

    #main-canvas {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 25px;
        margin-right: 0 !important;
    }

}

@media only screen and (max-width: 760px) {

    #main-navigation {
        display: none !important;
    }

    #main-canvas {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 25px;
    }

    #info-canvas {
        width: 100%;
        margin: 0 0;
    }

    #aside-canvas {
        width: 100%;
        margin-bottom: 10px;
    }


    /*****************************************************************
      *********** Header
      ******************************************************************/
    #head-image {
        width: 100%;
        height: 165px;
    }

    #head-image img {
        width: auto;
        height: 165px;
        align-content: center;
    }
}

@media only screen and (max-width: 520px) {
    #content-canvas {
        padding-top: 30px;
    }
}

/*
******************************************************************

CSS for navigation

(c) sinntun.codes
******************************************************************
*/
/*****************************************************************
*********** Navigation (Nav1))
******************************************************************/
.nav1 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.nav1-item {

}

.nav1-link {
    padding: 10px 0;
    display: flex;
    color: #000;
    font-size: 24px;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0);
}

.nav1-item.has-subnav .nav1-link:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    margin-left: 8px;
    color: #5E7461;
    font-size: 16px;
}

.nav1-link span {
    line-height: 24px;
    color: inherit;
    font-weight: 400;
    font-size: 24px;
}

.nav1-link.active,
.nav1-link:hover,
.nav1-item:hover .nav1-link {
    border-bottom: 2px #5E7461 solid;
}

.nav1-link-last {
    position: relative;
    z-index: 2000;
}


.nav1-item.bukowiki .nav1-link span {
    color: #5E7461;
}

/*****************************************************************
*********** Navigation (Nav1 with Nav2 Dropdown)
******************************************************************/
.nav2dropdown {
    display: none;
    float: none;
    position: absolute;
    z-index: 1000;
    width: auto;
    overflow: hidden;
    padding-top: 5px;
}

.nav1-item:hover .nav2dropdown {
    display: block;
}

.nav2dropdown-item {
    display: flex;
    float: none;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}


.nav2dropdown-item span {
    font-weight: 400;
    font-size: 20px;
    min-width: 200px;
    display: inline-block;
}

.nav2dropdown-link {
    display: inline-block;
    width: 100%;
    padding: 10px 8px;
    color: #000;
    background: #EDEFEB;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;

    border-bottom: 1px solid #5E7461;
}

.nav2dropdown-item:last-child .nav2dropdown-link {
    border-bottom: none;
}

.nav2dropdown-link.active,
.nav2dropdown-link:hover {
    background: #A7B09B;
}

.nav2dropdown-link span {
    color: inherit;
}


/*****************************************************************
*********** Navigation Meta
******************************************************************/
#meta-navigation {
    float: right;
    margin-right: 80px;
}

#meta-navigation .nav-meta-item {
    display: inline-block;
    margin-right: 5px;
}

#meta-navigation .nav-meta-link {
    display: inline-block;
}

.header-border {
    display: flex;
    width: 100vw;
}

.header-border .bar {
    width: 20%;
    height: 20px;
}

.header-border .bar.bright {
    background: #A7B09B;
}

.header-border .bar.dark {
    background: #5E7461;
}

/*****************************************************************
*********** Navigation Footer
******************************************************************/
.nav-footer {
    width: auto;
    height: auto;
    overflow: hidden;
    list-style: none !important;
}

.nav-footer-item {
    width: auto;
    height: auto;
    float: none;
    margin-right: 0;
}

.nav-footer-link {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}

.nav-footer-link span {
    color: #fff;
    font-weight: 300;
    font-size: inherit;
}

/*****************************************************************
*********** Lang-Selector
******************************************************************/
.language-wrapper .languages {
    display: flex;
    align-items: center;
}

.lang-selector {
    display: flex;
}

.lang-selector-item {
    display: block;
    float: right;
}

.lang-selector-link {
    display: inline-block;
    padding: 0 10px;
    border-right: 1px solid #5E7461;
}
.lang-selector-link.active span.lang-text {
    color: #000000;
}

.nav1-mobile .nav1-mobile-item.languages {
    background: #A7B09B;
}

.nav1-mobile .lang-selector-link {
    padding: 0;
    border-right: none;
}

.nav1-mobile .lang-selector {
    display: flex;
    flex-flow: column;
    gap: 15px;
    padding-top: 15px;
}

.nav1-mobile .lang-selector-link .lang-text {
    font-weight: 400;
}

.lang-selector-item:last-child .lang-selector-link {
    border-right: none;
}

/*
.lang-selector-link.lang-de::before {
    content: " ";
    display: inline-block;
    position: relative;
    background: url("/_images/flagge-de.png") no-repeat;
    width: 25px;
    height: 15px;
    background-size: 100% auto;
    margin-right: 7px;
    margin-top: 3px;
}

.lang-selector-link.lang-en::before {
    content: " ";
    display: inline-block;
    position: relative;
    background: url("/_images/flagge-gb.png") no-repeat;
    width: 25px;
    height: 15px;
    background-size: 100% auto;
    margin-right: 7px;
    margin-top: 3px;
}
*/

@media only screen and (max-width: 480px) {
    /*****************************************************************
      *********** Header
      ******************************************************************/
    .lang-selector {
        width: 115px;
    }

    .lang-selector .lang-text {
        /*display: none !important;*/
    }
}

/*
******************************************************************
CSS for mobile/responsive navigation
******************************************************************
*/
.mobile-div {
    position: fixed;
    height: 0;
    width: 100vw;
    overflow: hidden;
    z-index: 99999999;
    top: 125px;
    left: 0;
    transition: ease-in-out 0.6s;
    background-color: #FFF;
}

.mobile-menu {
    height: auto;
    width: auto;
    text-align: center;
    display: block;
}

.close-page-canvas {
    left: 60% !important;
}


@media only screen and (max-width: 520px) {
    .mobile-div {
        top: 73px;
    }
}
/*** menu-trigger
******************************************************************************* */
.menu-trigger {
    display: none;
    height: 29px;
    width: 30px;
    cursor: pointer;
    transition: ease-in 0.3s;
    position: absolute;
    top: 25px;
    right: 25px;
}

.menu-trigger .menu-line {
    transition: ease-in 0.2s;
    width: 100%;
    height: 2px;
    border-radius: 15px;
    margin: 0 auto 7px;
    background: #5e7461;
    line-height: 40px;
}

.menu-trigger:hover .menu-line:nth-child(2) {
    width: 80%;
}

.menu-trigger.open .menu-line:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
}

.menu-trigger.open .menu-line:nth-child(2) {
    display: none;
}

.menu-trigger.open .menu-line:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -3px;
}

@media only screen and (max-width: 1300px) {
    .menu-trigger {
        display: block !important;
    }
}

.subnav-nav-trigger::before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f078';
    color: #000;
    font-size: 22px;
}

.nav2-mobile-item .subnav-nav-trigger::before {
    color: #000;
}

.subnav-nav-trigger {
    height: 32px;
    cursor: pointer;
    float: right;
    font-size: 24px;
    text-align: center;
    overflow: hidden;
    padding: 5px;
    transition: ease-in-out 0.3s;
    position: absolute;
    right: 35px;
    top: 3px;
    transform: rotate(-90deg);
}

.subnav-nav-trigger.opened {
    transform: rotate(0deg);
}

.subnav-nav-trigger.opened:before,
.subnav-nav-trigger.active:before {
    color: #fff;
}

.nav1-additional {
    padding: 12px 40px;
    box-sizing: border-box;
    position: relative;
    background: #E4E4E4;
    color: #000 !important;
    font-weight: 900;
}

.nav1-additional-link::before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-right: 25px;
}

.nav1-additional-link.search::before {
    content: '\f002';
}

.nav1-additional-link.contact::before {
    content: '\f098';
}

.nav1-additional-link.start::before {
    content: '\f015';
}


.nav1-mobile-div {
    overflow: hidden;
    display: none;
    background-color: #fff;
}

.nav1-mobile {
    width: auto;
    text-align: left;
    box-sizing: border-box;
    height: auto;
    overflow: hidden;
}

.nav1-mobile li {
    width: 100%;
    color: #fff;
}

.nav1-mobile-div.menu-2 .nav1-mobile,
.nav1-mobile-div.menu-2 .nav2-mobile {
    height: auto;
    /*position: relative;*/
    /*   top: 50%;
       left: 100px;*/
    /*transform: translate(-50%, 0%);*/
    border: none;
    display: flex;
    flex-flow: column;
    gap: 5px;
    background: #fff;
}

.nav1-mobile-div.menu-2 .nav1-mobile-item {
    border: none;
}

.nav1-mobile-item.opened .background {
    background: #5E7461;
}

.nav1-mobile-div.menu-2 .nav1-link-mobile {

}

.nav1-mobile-div.menu-2 .nav1-link:hover {

}


.nav1-mobile-div.menu-1 {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 80px);
    top: 80px;
    right: -100vw;
    transition: ease-in-out .4s;
    border-top: 25px solid #fff;
}

.nav1-mobile-div.menu-2 {
    position: fixed;
    width: 100vw;
    height: calc(-451px + 100vh);
    right: 0;
    transition: ease-in-out .4s;
    z-index: 999;
    overflow: auto;
    padding-bottom: 0;
    border-top: 25px solid #fff;
}

.nav1-mobile-div.menu-3 {
    position: fixed;
    width: 60vw;
    height: 100vh;
    top: 0;
    right: -60vw;
    transition: ease-in-out .4s;
}

.nav2-mobile {
    background: #fff;
    margin-left: -80px;
    margin-right: -80px;
    padding: 5px 40px 0 40px;
    transform: translateY(12px);
    overflow: hidden;
}

.nav3-mobile {
    background: #fff;
    margin-left: -80px;
    margin-right: -80px;
    padding: 0 40px;
    transform: translateY(12px);
    display: none;
    overflow: hidden;
}


/************************/
.nav1-mobile-link span {
    color: #000;
    font-size: 20px;
}

.nav2-mobile-link span {
    color: #000;
    font-size: 20px;
}

.nav1-mobile-link {
    width: 100%;
    display: inline-block;
}

.nav1-mobile-link.subnav {
    width: calc(100% - 45px);
}


.nav1-mobile > li {
    background: #EDEFEB;
    color: #000;
}

.nav1-mobile > li:has(.active),
.nav1-mobile > li:has(.opened) {
    background: #5E7461;
}

.nav1-mobile-link.active span,
.nav1-mobile-link.opened span {
    font-weight: 600;
    color: #fff;
}

.nav1-mobile-link.active,
.nav1-mobile-link:hover {
    /*background-color: #00528C;*/
}

.nav1-mobile-link.active span {
    color: #fff;
}

.nav1-mobile-link.active span {
    font-weight: 600;
}

.nav1-mobile-item {
    padding: 12px 40px;
    box-sizing: border-box;
    position: relative;
    background: #FFEFE0;
}

.nav1-mobile-item.search {
    background: #A7B09B;
}

.nav1-mobile-item.languages {
    background: #A7B09B;
    padding: 15px 40px;
}

.nav1-mobile-item.search span:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f002';
    margin-right: 20px;
    font-size: 22px;
}

.nav1-mobile-item .background {
    height: 48px;
    width: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background: #fff;
}

.nav2-mobile-item {
    padding: 12px 40px;
    box-sizing: border-box;
    position: relative;
    background: #EDEFEB;
    border-radius: 10px;
}

.nav1-mobile-item:has(.opened) {
    border-radius: 0 !important;
}

.nav2-mobile-link {
    display: inline-block;
    width: calc(100% - 30px);
}


.nav3-mobile-item {
    padding: 10px 40px;
    box-sizing: border-box;
    position: relative;
    background: #EEEEEE;
}

.nav3-mobile-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav3-mobile-link {
    color: #000;
}

.nav3-mobile-link.active span {
    color: #5E7461;
}

.nav3-mobile-link span {
    color: #000;
}

.nav3-mobile-link span:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    content: '\f054';
    color: #000;
    margin-right: 8px;
}

@media only screen and (max-width: 1024px) {
    .nav1-mobile-div.menu-2 {
        border-top: 15px solid #fff;
    }
}

/*****************************************************************
*********** Lang-Selector
******************************************************************/
.lang-selector-mobile {
    display: none;
}


/*****************************************************************
**** Header
******************************************************************/
#head-canvas {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    padding-left: 0;
    padding-top: 30px;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 13px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1450px) {
    #head-canvas {
        padding: 15px 25px 0;
    }
}


@media only screen and (max-width: 1220px) {
    #head-canvas {
        padding: 15px 35px 0;
    }
}

@media only screen and (max-width: 1024px) {
    #head-canvas {
        padding: 10px 15px 15px;
        position: relative;
        min-height: 75px;
    }
}

#logo {
    overflow: hidden;
    min-width: 372px;
    width: 372px;
    margin-bottom: 75px;
}

#logo img {
    width: 100%;
    height: auto;
}

#logo .logo-img.white {
    display: none;
}

@media only screen and (max-width: 1300px) {
    #logo {
        min-width: 280px;
        width: 280px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    #logo {
        max-width: 100px;
        position: relative;
        width: auto;
        height: auto;
        top: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 520px) {
    #logo {
        min-width: 148px;
        width: 148px;
        margin-bottom: 15px;
    }
}

#head-canvas .language-wrapper {
    display: flex;
    flex-flow: column;
    gap: 23px;
}

#head-canvas .language-wrapper .search form {
    display: flex;
    justify-content: space-between;
}

#head-canvas .language-wrapper .languages * {
    color: #5E7461;
    font-size: 20px;
    font-weight: 400;
}

#head-canvas .language-wrapper .languages .lang-selector-link:hover *,
#head-canvas .language-wrapper .languages .lang-selector-link.active * {
    color: #000000;
}
#head-canvas .language-wrapper .language-introtext {
    font-weight: 300;
}


#head-canvas .language-wrapper .languages p {
    font-weight: 300;
}

#head-canvas .language-wrapper .languages a {
    font-weight: 400;
}


#head-canvas .language-wrapper .search-input {
    border: 2px #A7B09B solid;
    border-radius: 5px;
    padding: 15px 32px 15px 72px;
    color: #A7B09B;
    font-size: 20px;
    font-weight: 400;
    box-sizing: border-box;
    height: 55px;
    background-image: url(/_images/search-icon.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 32px 50%;
}


#head-canvas .language-wrapper .submit-button {
    width: 173px;
    height: 55px;
    box-sizing: border-box;
    background: #A7B09B;
    border: none;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
}

#head-image {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    max-width: 1920px;
    margin: auto;
}

#head-image .copyright {
    font-size: 12px;
    padding: 5px 5px 0 5px;
    z-index: 5;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 1200px) {
    #head-image .copyright {
        bottom: -15px;
    }

    .ai-mark {
        bottom: 10px !important;
    }
}

.header-text {
    position: absolute;
    white-space: nowrap;
    margin: 0;
    font-size: 153px;
    font-weight: bold;
    color: white;
    font-family: Verdana, sans-serif;
    bottom: -32px;
    left: 246px;
}

.ai-mark {
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: .4;
}

@media screen and (max-width: 1200px) {
    .header-text {
        font-size: 110px;
        bottom: -23px;
        left: 20px;
    }

    .header-text:nth-of-type(2) {
        bottom: 75px;
        right: 150px;
    }

    .header-text:nth-of-type(3) {
        bottom: -25px;
        right: 145px;
    }
}

@media screen and (max-width: 1024px) {
    .header-text {
        font-size: 80px;
        bottom: -17px;
    }
}

@media screen and (max-width: 860px) {

    .header-text:nth-of-type(2) {
        right: 123px;
        font-size: 70px;
        bottom: 50px;
    }

    .header-text:nth-of-type(3) {
        right: 120px;
        font-size: 70px;
        bottom: -15px;
    }
}

@media screen and (max-width: 670px) {
    .header-text {
        font-size: 50px;
        bottom: -10px;
    }
}


@media screen and (max-width: 400px) {

    .header-text:nth-of-type(2) {
        right: 23px;
        bottom: 50px;
    }

    .header-text:nth-of-type(3) {
        right: 20px;
        bottom: -17px;
    }
}

#head-right {
    display: flex;
    flex-flow: column;
    gap: 40px;
}

@media only screen and (max-width: 1300px) {
    #head-right {
        display: none;
    }
}

.top-navigation {
    display: inline-block;
    align-self: flex-end;
    width: 100%;
}

.top-navigation .english-site {
    background: #000;
    color: #fff;
    padding: 6px 25px;
    border-radius: 10px;
    box-sizing: border-box;
    display: inline-block;
}

.top-navigation .contact {
    align-items: flex-end;
    display: flex;
    gap: 50px;
}

.top-navigation .contact .telephone,
.top-navigation .contact .email {
    color: #5E7461;
    display: flex;
    gap: 10px;
}

.top-navigation .contact .telephone .text,
.top-navigation .contact .email .text {
    color: inherit;
    font-size: 18px;
}

.top-navigation .contact .telephone:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    content: '\f095';
}


.top-navigation .contact .email:before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    content: '\f0e0';
}

@media only screen and (max-width: 1024px) {
    .top-navigation {
        position: absolute;
        right: 100px;
        top: 26px;
    }

    .top-navigation .english-site {
        display: none;
    }
}

@media only screen and (max-width: 650px) {

    .top-navigation .contact {
        gap: 35px;
    }

    .top-navigation .contact .telephone .text,
    .top-navigation .contact .email .text {
        display: none;
    }

    .top-navigation .contact .telephone:before {
        content: '\f095';
        font-size: 22px;
    }

    .top-navigation .contact .email:before {
        content: '\f0e0';
        font-size: 22px;
    }
}

/* für bildschirme mit übergröße */

#page-image {
    width: 1920px;
    margin-left: 50%;
    transform: translate(-50%);
}

@media only screen and (max-width: 1920px){
    #page-image {
        width: 100vw; /* Volle Breite des Viewports */
        margin-left: calc(-50vw + 50%); /* Zentrale Ausrichtung */
        margin-bottom: 40px;
        transform: unset;
    }
}

@media only screen and (max-width: 520px){
    #page-image {
        margin-bottom: 0;
    }
}

.head-text {
    box-sizing: border-box;
    display: block;
    text-align: center;
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    margin: 0 auto;
}


/*********************************
    Banner
 **********************************/

.banner-container {
    position: relative;
}

.banner {
    top: 118px;
    position: fixed;
    background: #A7B09B;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 80px;
    width: 80px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    right: 0;
    z-index: 401;
    padding-top: 11px;
    box-sizing: border-box;
    padding-left: 3px;
    border: 2px solid #ffffff;
}

.banner .icon::before {
    display: block;
    line-height: 1;
}

.banner .label {
    color: #000;
    line-height: 1;
}

.search-banner {
    top: 185px;
    flex-flow: row;
    width: 345px;
    padding-top: 0;
    transition: .25s all ease-in-out;
    right: -265px;
    cursor: pointer;
}

.search-banner .left {
    width: 80px;
    height: 80px;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-top: 11px;
}

.search-banner .right input {
    width: 230px;
    font-size: 22px;
    padding: 3px 12px;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    height: 35px;
}

.opac-banner {
    top: 285px;
}

.contact-banner {
    top: 385px;
}

.search-banner .icon::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #000;
}

.opac-banner .icon::before {
    content: '\f02d';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #000;
}

.contact-banner .icon::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #000;
}

.search-banner .label,
.opac-banner .label,
.contact-banner .label {
    font-size: 16px;
    margin-top: 4px;
    font-weight: 400;
}

.search-banner .left:focus-visible {
    outline: none;
}

/* Wenn .left fokussiert ist, soll .search-banner die Styles bekommen */
.search-banner:has(.left:focus-visible) {
    outline: 3px solid #A7B09B;
    outline-offset: 3px;

}

.search-banner:has(.right input:focus) {
    outline: 3px solid #A7B09B;
    outline-offset: 3px;

}

.search-banner:focus-visible,
.opac-banner:focus-visible,
.contact-banner:focus-visible {
    outline: 3px solid #A7B09B;
    outline-offset: 3px;

}

@media only screen and (max-width: 1600px) {
    .search-banner {
        top: 315px;
    }

    .opac-banner {
        top: 415px;
    }

    .contact-banner {
        top: 515px;
    }
}

@media only screen and (max-width: 1300px) {
    .banner {
        display: none;
    }
}

/* Mobile Banner-Leiste am unteren Rand */
.mobile-banner-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to bottom,
    #ffffff 0%,
    #ffffff 5%,
    #A7B09B 5%,
    #A7B09B 100%
    );
    display: none;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1030;
}

.mobile-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    text-decoration: none;
    color: #000;
    padding: 5px 20px;
    cursor: pointer;
    transition: background 0.25s ease;
    text-align: center;
    border-radius: 20px;
}

.mobile-banner-item:hover,
.mobile-banner-item:active {
    background: #e4e4e4;
}

.mobile-banner-item .icon::before {
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    font-size: 1.75rem;
    color: #000;
    display: block;
    line-height: 1;
}

.mobile-banner-item .label {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    line-height: 1;
}

/* Icons für OPAC und Contact in Mobile */

.mobile-banner-item.search-item .icon::before {
    content: '\f002';
}

.mobile-banner-item.opac-item .icon::before {
    content: '\f02d';
}

.mobile-banner-item[href*='/kontakt'] .icon::before {
    content: '\f095';
}

/* Mobile Search Modal */
.mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    width: 85%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -4rem;
    right: 20px;
    background: none;
    border: none;
    font-size: 3.5rem;
    cursor: pointer;
    color: #ffffff;
    line-height: 1;
    padding: 0.25rem 5px;
}

.modal-close:hover {
    color: #A7B09B;
}

.modal-content form {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.modal-content label {
    width: 75%;
}

.mobile-search-input {
    box-sizing: border-box;
    flex: 1;
    font-size: 18px;
    padding: 0.75rem;
    border: 2px solid #A7B09B;
    border-radius: 5px;
    width: 100%;
}

.mobile-search-submit {
    background: #A7B09B;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 2.75rem;
    height: 2.75rem;
}

.mobile-search-submit:hover {
    background: #707070;
}

.mobile-search-submit .modal-search-icon {
    font-weight: 300;
    font-size: 1.875rem;
    color: #000;
}

/* Responsive Verhalten */
@media only screen and (min-width: 1300px) {
    .desktop-banners {
        display: block;
    }

    .mobile-banner-bar {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1299px) {
    .desktop-banners {
        display: none !important;
    }

    .mobile-banner-bar {
        display: flex;
    }

    footer {
        padding-bottom: 20px;
    }

    .footer-background {
        padding-bottom: 20px;
    }

    .footer-end-links {
        margin-bottom: 3rem;
    }
}

/* Modal Close Button Responsive */
@media only screen and (max-width: 960px) {
    .modal-close {
        font-size: 1.75rem;
    }
}


/* Usercentrics Safe Space - Anpassungen fÃ¼r kleine Screens */
@media only screen and (max-width: 480px) {
    .mobile-banner-bar.uc-safe-space {
        justify-content: flex-end;
        display: flex;
        gap: 30px;
        padding-right: 45px;
    }
}

@media only screen and (max-width: 450px) {
    .mobile-banner-bar.uc-safe-space {
        justify-content: flex-end;
        display: flex;
        gap: 40px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .mobile-banner-bar.uc-safe-space {
        gap: 20px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 352px) {
    .mobile-banner-bar.uc-safe-space {
        gap: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 350px) {
    .mobile-banner-bar.uc-safe-space {
        gap: 10px;
        padding-right: 0.75rem;
    }
}

@media only screen and (max-width: 340px) {
    .mobile-banner-bar.uc-safe-space {
        gap: 10px;
        padding-right: 0.75rem;
    }
}

@media only screen and (max-width: 330px) {
    .mobile-banner-bar.uc-safe-space {
        gap: 5px;
        padding-right: 5px;
    }
}
.heading-container h2 {
    border-bottom: 2px solid #5E7461;
    padding-bottom: 20px;
    color: #5E7461;
}

/*****************************************************************
**** Footer
******************************************************************/
#footer-top .heading-container {
    width: fit-content;
    margin: auto auto 13px;
    color: #5E7461;
    font-size: 22px;
    font-weight: 400;
}

#footer-top .sponsor-logo-container {
    background: #E4E4E4;
    margin-bottom: 10px;
}

#footer-top .sponsor-logo-container .wrapper {
    margin: auto;
    max-width: 1400px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
}

#footer-top .sponsor-logo-container .wrapper .logo {
    max-width: 100%;
}

#footer-top .sponsor-logo-container .wrapper .logo.augsburg {
    width: 300px;
    align-self: center;
    filter: brightness(0);
}

#footer-top .sponsor-logo-container .wrapper .logo.schwaben {
    width: 190px;
    align-self: center;
}

#footer-top .sponsor-logo-container .wrapper .logo.ministerium {
    width: 385px;
    align-self: center;
}


#footer-canvas {
    height: auto;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    padding: 30px 0 60px;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

#footer-canvas .column {
    overflow: hidden;
    box-sizing: border-box;
    margin-left: 0;
}

#footer-canvas .column.image {
    width: 140px;
}

#footer-canvas .column .text {
    line-height: 22px;
    font-size: 18px;
    font-weight: 300;
}


#footer-bar {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: auto;
    padding: 0 0 15px;
}

#footer-canvas .copyright {
    margin-top: 15px;
}

#footer-canvas .social-media-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
}

#footer-canvas .nav-footer,
#footer-canvas .column .text,
#footer-canvas .column .external-links-list,
#footer-canvas .socialmedia-icons {
    display: flex;
    flex-flow: column;
    gap: 8px;
}

#footer-canvas .social-media-link i {
    font-size: 33px;
    color: #fff;
}

#footer-canvas #youtube-link.social-media-link::before {
    font-family: 'Font Awesome 6 Brands', sans-serif;
    font-size: 24px;
    content: '\f167';
}

#footer-canvas #twitter-link.social-media-link::before {
    font-family: 'Font Awesome 6 Brands', sans-serif;
    font-size: 24px;
    content: '\e61b';
}

#footer-canvas #facebook-link.social-media-link::before {
    font-family: 'Font Awesome 6 Brands', sans-serif;
    font-size: 24px;
    content: '\f09a';
    width: 29px;
}

#footer-canvas #instagram-link.social-media-link::before {
    font-family: 'Font Awesome 6 Brands', sans-serif;
    font-size: 24px;
    content: '\f16d';
}

#footer-canvas #xing-link.social-media-link::before {
    font-family: 'Font Awesome 6 Brands', sans-serif;
    font-size: 24px;
    content: '\f168';
}

#footer-canvas #linkedin-link.social-media-link::before {
    font-family: 'Font Awesome 6 Brands', sans-serif;
    font-size: 24px;
    content: '\f08c';
}

#footer-canvas .hard-coded-footer-link {
    display: block;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

#footer-top .sponsor-logo-container .mobile-text {
    display: none;
    width: fit-content;
    margin: auto;
    color: #5E7461;
    font-size: 20px;
    font-weight: 400;
    max-width: 300px;
    text-align: center;
    line-height: 22px;
}

@media only screen and (max-width: 1450px) {
    #footer-bar {
        margin-left: 50px;
    }

    #footer-canvas {
        padding: 25px 20px 70px;
    }
}

@media only screen and (max-width: 1220px) {
    .nav-footer {
        box-sizing: border-box;
    }

    #footer-bar {
        box-sizing: border-box;
        display: block;
        text-align: center;
        margin-left: 0;
    }
}

@media only screen and (max-width: 1300px) {
    #footer-canvas {
        padding: 25px 50px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footer-top .sponsor-logo-container .wrapper .logo.augsburg {
        margin-bottom: 15px;
    }

    #footer-canvas .column {
        margin-bottom: 25px;
    }

    #footer-canvas .socialmedia-icons {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    #footer-canvas .social-media-link {
        float: none;
    }

    #footer-canvas .column .text {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

}

@media only screen and (max-width: 860px) {
    #footer-canvas .column {
        width: auto;
        float: none;
        margin: auto;
        text-align: center;
        padding: 0 0 25px;
    }

    #footer-canvas .column.right-column {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    #footer-canvas .socialmedia-icons {
        justify-content: center !important;
    }

    #footer-canvas .column.left-column.image {
        max-width: 500px !important;
    }
}

.footer-end-links {
    background-color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.footer-end-links a {
    color: #000;
    text-align: center;
    border-left: 1px solid #000;
    padding: 0 8px;
    font-weight: 400;
}

@media screen and (max-width: 1450px) {
    .footer-end-wrapper {
        margin: 0 50px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-end-wrapper {
        margin: 0;
        justify-content: center;
    }
}


.footer-end-links a:first-child {
    border-left: unset;
}

@media only screen and (max-width: 520px) {
    #footer-top .sponsor-logo-container .wrapper {
        gap: 25px;
    }

    #footer-top .sponsor-logo-container .wrapper .logo.augsburg {
        width: 250px;
        margin-bottom: 20px;
    }

    #footer-top .sponsor-logo-container .wrapper .logo.schwaben {
        width: 160px;
    }

    #footer-top .sponsor-logo-container .wrapper .logo.ministerium {
        width: 335px;
    }

    .footer-end-wrapper {
        flex-flow: column;
        gap: 5px;
    }

    .footer-end-wrapper a {
        border-left: unset;
    }

    .column.left-column.image img {
        max-width: 200px !important;
        height: auto !important;
    }

    #footer-top .heading-container {
        display: none;
    }

    #footer-top .sponsor-logo-container .mobile-text {
        display: block;
    }

}

@media only screen and (max-width: 420px) {
    .footer-end-links {
        flex-flow: column;
        gap: 10px;
    }

    .footer-end-links a {
        border-left: none;
    }
}

/*****************************************************************
**** Slider
******************************************************************/
#slider {
    width: 100%;
    display: block;
    overflow: hidden;
}

.slider-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 210px;
    transform: translate(0, -50%);
}

.slider-caption span {
    display: block;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .slider-caption {
        display: none !important;
    }
}

/* Footer Social-Media */
#footer-socialmedia #facebook-link::before,
#footer-socialmedia #instagram-link::before,
#footer-socialmedia #twitter-link::before,
#footer-socialmedia #youtube-link::before,
#footer-socialmedia #xing-link::before,
#footer-socialmedia #linkedin-link::before {
    font-size: 30px;
    font-family: 'Font Awesome 6 Brands', sans-serif;
    display: block;
    width: 45px;
    vertical-align: middle;
}

#footer-socialmedia .content-container a {
    display: flex;
    align-items: center;
    text-align: center;
}

#footer-socialmedia #facebook-link::before {
    content: '\f09a';
}

#footer-socialmedia #instagram-link::before {
    content: '\f16d';
}

#footer-socialmedia #twitter-link::before {
    content: '\e61b';
}

#footer-socialmedia #youtube-link::before {
    content: '\f431';
}

#footer-socialmedia #xing-link::before {
    content: '\f168';
}

#footer-socialmedia #linkedin-link::before {
    content: '\f08c';
}

#footer-socialmedia .social-media-text {
    grid-area: 1 / 1 / 3 / 1;
    align-self: center;
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    #footer-socialmedia .content-container {
        grid-template-columns: repeat(2, 1fr);
    }

    #footer-socialmedia .content-container a {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    #footer-socialmedia .content-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    #footer-socialmedia .content-container a {
        padding: 10px;
        display: inline-block;
        line-height: 1.5;
    }
}

/*** Footer
******************************************************************/
.footer-background {
    background: #5E7461;
    height: auto;
}

.footer-background h2 {
    color: white;
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: 'Noto Serif', sans-serif;
}

#footer-socialmedia {
    background: #A7B09B;
    margin-bottom: 10px;
}

#footer-socialmedia .headline {
    font-family: 'Noto Serif', sans-serif;
    font-size: 23px;
    display: flex;
}

#footer-socialmedia .wrapper {
    margin: auto;
    max-width: 1400px;
    padding: 30px 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.social-media-container {
    display: flex;
    gap: 100px;
    row-gap: 23px;
    flex-flow: column;
}

.social-media-container .icon-row .social-media-link {
    display: flex;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    align-items: center;
}

.social-media-container .icon-row {
    display: flex;
    gap: 55px;
}

.newsletter-container {
    display: flex;
    gap: 100px;
    row-gap: 23px;
    flex-flow: column;
    max-width: 100%;
}

.newsletter-container .newsletter-mail {
    width: 400px;
    height: 45px;
    box-sizing: border-box;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    line-height: 26px;
    max-width: 100%;
}

.newsletter-container form {
    display: flex;
    gap: 14px;
}

.newsletter-container .submit-button {
    font-weight: 700;
    background: #fff;
    height: 45px;
    padding: 12px 30px;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

#footer-canvas .text-p {
    font-size: 18px;
}

#footer-canvas .text,
#footer-canvas .text-p,
#footer-canvas .copyright,
#footer-bar-left,
#footer-bar-right {
    color: #fff;
}


#footer-canvas .text-p.telephone,
#footer-canvas .text-p.mobile,
#footer-canvas .text-p.email,
#footer-canvas .text-p.website {
    display: flex;
    gap: 8px;
    font-weight: 300;
}

#footer-canvas .text-p.mobile {
    gap: 13px;
}


#footer-canvas .text-p.telephone:before {
    content: '\f095';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

#footer-canvas .text-p.mobile:before {
    content: '\f3ce';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

#footer-canvas .text-p.email:before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}

#footer-canvas .text-p.website:before {
    content: '\f0ac';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
}


#footer-canvas .column.external-links .external-links-list .list-item .link:after {
    content: '\e09f';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 300;
    margin-left: 8px;
    color: #fff;
}

#footer-canvas .column.left-column.image img {
    width: auto;
    max-width: 300px;
    height: auto;
    max-height: 120px;
}

#footer-canvas .column.left-column.image {
    width: auto;
    max-width: 300px;
    height: auto;
}

#footer-canvas .availability {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}

#footer-socialmedia .newsletter-subscription-button {
    font-size: 23px;
    padding: 16px 25px;
    border: 2px solid #5E7461;
    font-family: 'Noto Serif', sans-serif;
}

@media only screen and (max-width: 1300px) {
    #footer-socialmedia .wrapper {
        justify-content: center;
        text-align: center;
    }

    .social-media-container {
        justify-content: center;
        text-align: center;
    }

    #footer-top .sponsor-logo-container .wrapper {
        flex-flow: column;
        align-items: center;
        gap: 35px;
    }
}

@media only screen and (max-width: 800px) {
    .social-media-container .icon-row {
        flex-flow: column;
        align-items: center;
        gap: 20px;
    }
}

@media only screen and (max-width: 520px) {
    .newsletter-container form {
        display: flex;
        flex-flow: column;
    }

    .newsletter-container .submit-button {
        width: 230px;
        margin: auto;
    }
}


/*****************************************************************
**** General
******************************************************************/
.content-container, .page-headline-container, .page-introtext-container {
    margin: 0 auto;
    display: flex;
    max-width: 1400px;
    justify-content: space-between;
    padding: 0 20px;
}

@media only screen and (max-width: 760px) {
    .page-headline {
        font-size: 35px !important;
    }


}

@media only screen and (max-width: 520px) {
    .page-headline {
        font-size: 28px !important;
    }


}



