/*!
Theme Name: Contact-Theme
Theme URI: -
Author: Contact GmbH
Author URI:
Description:
Version: 1.0.0
License: -
License URI: -
Text Domain: contact-theme
Tags:

*/

/* ================================

General
    Presets

Modules

================================ */


/* ================================
------------- General -------------
================================ */


/* ========== Presets ========== */

:root {
    --black: #000000;
    --white: #FFFFFF;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Regular.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Bold.ttf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Lato Black";
    src: url("../fonts/Lato-Black.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Bold.woff2') format('woff2'),
        url('../fonts/WorkSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Light.woff2') format('woff2'),
        url('../fonts/WorkSans-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

@media only screen and (max-width: 991px) {
    html {
        width: 100vw;
    }
}

body {
    color: #2F3231;
    font-family: "Lato", Arial, sans-serif;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-x: hidden;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 900000;
    transition: top 0.3s ease;
    text-decoration: none;
  }
  
  .skip-to-content:focus-visible {
    top: 0;
  }
  

section {
    padding: 8rem 0;
}

a {
    text-decoration: none;
}

.cta-button {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #201F1F;
    border-radius: 50px;
    color: #201F1F;
    font-style: italic;
    margin-top: 30px;
}

.cta-button:hover,
.cta-button:focus-visible {
    color: #fff;
    background-color: #201F1F;
    border-color: #201F1F;
}

/* ================================
------------- Modules -------------
================================ */

/* General */
.pre-headline {
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    line-height: 38px;
}

.pre-headline:before {
    content: "";
    display: block;
    height: 5px;
    width: 30px;
    flex-shrink: 0; 
    flex-grow: 0;
    margin-top: 16px;
    background-color: #E2011B;
}

@media only screen and (max-width: 991px) {
    .pre-headline {
        font-size: 18px;
    }
}

.h1 {
    text-transform: uppercase;
    font-family: "Work Sans", Arial, sans-serif;
    letter-spacing: -2px;
}

@media only screen and (min-width: 1400px) {
    .h1 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1200px) {
    .h1 {
        font-size: 52px;
    }
}

@media only screen and (max-width: 1199px) {
    .h1 {
        font-size: 44px;
    }
}

@media only screen and (max-width: 991px) {
    .h1 {
        font-size: 32px;
    }
}

/* ------------- Header ------------- */
.main-header {
    padding: 20px;
    position: absolute;
    height: 160px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .main-header .container {
        max-width: 100%;
    }
}

.main-header .logo-wrapper {
    position: relative;
    z-index: 2;
}

.main-header .logo-wrapper img {
    height: 120px;
    width: auto;
}

.main-header .navbar-nav {
    display: flex;
    gap: 40px;
}

/* ------------- Navigation ------------- */
.main-navigation a {
    color: #2F3231;
    display: block;
    padding: 5px 0;
}

@media only screen and (min-width: 992px) {

    .main-navigation .dropdown-menu {
        min-width: 200px;
        background-color: #f6f6f6;
        box-shadow: 0 1px 2px 1px rgba(0,0,0,0.2);
        border: none;
        border-radius: 0;
    }

    .main-navigation .dropdown-menu li a {
        padding: 10px;
    }

    .main-navigation .dropdown-menu li a:hover,
    .main-navigation .dropdown-menu li a:focus-visible {
        background-color: #fff;
        text-decoration: underline;
    }
}

@media only screen and (max-width: 991px) {
    

    .main-navigation .navbar-toggler {
        position: fixed;
        right: calc(var(--bs-gutter-x) * 1.33);
        z-index: 1;
        border-radius: 0;
    }

    .main-navigation .navbar-toggler.collapsed {
        position: relative;
        right: 0;
    }

    .main-navigation ul {
        list-style: none;
        padding: 0;
    }

    #primary-menu {
        padding: 30px;
        display: block;
    }

    #primary-menu-wrap {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        padding-top: 150px;
        background-color: #fff;
        font-size: 16px;
        text-transform: uppercase;
    }

    .main-navigation a {
        margin: 10px 0;
        padding-bottom: 15px;
        border-bottom: 1px solid #A7A7A7;
    }

    .main-navigation li {
        position: relative;
    }

    .main-navigation .dropdown-menu {
        border: none;
    }

    .main-navigation .dropdown-menu a {
        padding-left: 40px;
    }

    .main-navigation .dropdown-menu .dropdown-menu a {
        padding-left: 70px;
    }

    .main-navigation .submenu-toggle {
        position: absolute;
        right: 0;
        top: -6px;
        padding: 11px 17px;
        border: 0;
    }
}

/* ------------- Footer ------------- */
.main-footer {
    padding-top: 40px;
    font-size: 14px;
}

.main-footer .footer-logo img {
    height: 90px;
}

@media only screen and (max-width: 767px) {
    .main-footer .footer-logo img {
        margin-bottom: 30px;
    }
}

.main-footer span {
    display: block;
    text-transform: uppercase;
    font-family: "Work Sans", Sans-serif;
    margin-bottom: 15px;
    letter-spacing: 0;
}

.main-footer .footer-stiftung-logo-1 {
    height: 75px;
    width: auto;
}

.main-footer .footer-stiftung-logo-2 {
    height: 45px;
    width: auto;
}

@media only screen and (min-width: 768px) {
    .main-footer .col-border {
        border-left: 1px solid #A7A7A7;
    }
}

@media only screen and (max-width: 767px) {
    .main-footer .col-border {
        border-bottom: 1px solid #A7A7A7;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-footer .stiftungs-logo-col {
        margin-top: 50px;
    }
}

.sub-footer {
    font-size: 14px;
    padding: 20px 0;
}

@media only screen and (min-width: 768px) {
    .sub-footer {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .sub-footer {
        padding-top: 0;
    }
}

.sub-footer a {
    color: #2F3231;
}

.menu-footer-menu-container ul {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

@media only screen and (max-width: 767px) {
    .menu-footer-menu-container ul {
        flex-direction: column;
        margin-top: 50px;
    }
}

.menu-footer-menu-container a {
    padding: 0;
}

/* ------------- Hero Headline Module ------------- */
.hero-headline-module {
    padding-top: 190px;
    height: 1100px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .hero-headline-module .h1 {
        font-size: 26px;
    }
}

.hero-headline-module .swiper-horizontal>.swiper-pagination-bullets, 
.hero-headline-module .swiper-pagination-bullets.swiper-pagination-horizontal, 
.hero-headline-module .swiper-pagination-custom, .swiper-pagination-fraction {
    top: -25px;
    bottom: auto;
}

.hero-headline-module .swiper-pagination-bullet-active {
    background-color: #E2011B;
}

.hero-headline-module .swiper {
    height: 100%;
    overflow: visible;
}

@media only screen and (min-width: 992px) {
    .hero-headline-module-text-container {
        column-count: 2;
        column-gap: 30px;
    }
}

.hero-headline-module-content-container {
    background-color: #fff;
    box-sizing: border-box;
    padding: 0 30px 30px;
}

.hero-slider-image {
    height: 700px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

@media only screen and (max-width: 500px) {
    .hero-slider-image {
        height: 500px;
    }
}

.hero-headline-module .swiper-button-next, 
.hero-headline-module .swiper-button-prev {
    background-image: url(../contact-theme/assets/images/slider-left.svg);
    top: 100px;
    background-size: contain;
    width: 50px;
    height: 100px;
    background-repeat: no-repeat;
    transition: background-position ease-out 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 1249px) {
    .hero-headline-module .swiper-button-next, 
    .hero-headline-module .swiper-button-prev {
        width: 3%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-headline-module .swiper-button-next, 
    .hero-headline-module .swiper-button-prev {
        top: 100px;
        background-color: #fff;
        transform: scale(0.7);
    }

    .hero-headline-module .swiper-button-prev {
        left: -12px;
    }

    .hero-headline-module .swiper-button-next {
        right: -12px;
    }
}

.hero-headline-module .swiper-button-next:after, 
.hero-headline-module .swiper-button-prev:after {
    display: none;
}

.hero-headline-module .swiper-button-next {
    rotate: 180deg;
    background-position: center right;
}

.hero-headline-module .swiper-button-prev {
    background-position: center right;
}

@media only screen and (min-width: 768px) {
    .hero-headline-module .swiper-button-prev:hover {
        background-position: center;
    }
    
    .hero-headline-module .swiper-button-next:hover {
        background-position: center;
    }   
}

/* ------------- Headline Module ------------- */
.headline-module {
    padding-bottom: 0;
}

/* ------------- Text Image Module ------------- */
.text-image-module .image-left {
    flex-direction: row-reverse;
}

.text-image-module + .text-image-module {
    padding-top: 0;
}

.text-image-module + .text-image-module .row .row {
    border-top: 1px solid #A7A7A7;
    padding-top: 8rem;
}

.headline-module + .text-image-module,
.headline-module + .text-module,
.headline-module + .downloads-module {
    padding-top: 4rem;
}

@media only screen and (max-width: 991px) {
    .text-image-module .row,
    .text-image-module .row.image-left {
        flex-direction: column-reverse;
    }

    .text-image-module-image {
        margin-bottom: 2rem;
    }
}

/* ------------- Hero Small Module ------------- */
.hero-small-module {
    padding-top: 180px;
    background-color: #EFEFEF;
}

.hero-small-module:after {
    content: "";
    display: block;
    width: 100%;
    height: 70px;
    background-color: #fff;
    margin-top: -70px;
}

.hero-small-module-image-container {
    height: 570px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-small-module-image-container.no-image {
    height: 50px;
}

@media only screen and (max-width: 991px) {
    .hero-small-module-image-container {
        height: 350px;
    }

    .hero-small-module-image-container.no-image {
        height: 50px;
    }
}

/* ------------- Company Intro Module ------------- */
.company-intro-module {
    background-color: #EFEFEF;
}

.company-intro-module-top {
    margin-bottom: 100px;
}

.company-more-info-box {
    position: relative;
    display: block;
}

.company-more-info-box:hover,
.company-more-info-box:focus,
.company-more-info-box:active {
    color: #2F3231;
}

.company-more-info-box:after {
    content: "";
    background-image: url(../contact-theme/assets/images/more-info-arrow.png);
    display: block;
    pointer-events: none;
    height: 60px;
    width: 60px;
    background-size: contain;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.company-more-info-box-content {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100px;
    padding: 30px;
    backdrop-filter: blur(10px);
    color: #EFEFEF;
}

@media only screen and (min-width: 992px) {
    .company-more-cta-box {
        border-left: 1px solid #707070;
    }
}

@media only screen and (max-width: 991px) {
    .company-more-cta-box {
        margin-top: 70px;
    }
}

.company-more-cta-box strong {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 22px;
    display: block;
    margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
    .company-more-cta-box strong {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .company-more-cta-box a {
        margin-top: 10px;
    }
}

/* ------------- About Us Module ------------- */
.about-us-module {
    background-color: #EFEFEF;
    overflow: hidden;
    padding-bottom: 0;
}

.about-us-module .h1 {
    margin-bottom: 50px;
}

.about-us-module .container {
    position: relative;
}

@media only screen and (min-width: 992px) {
    .about-us-module-text {
        margin-top: 50px;
    }
}

.about-us-module-big-number {
    position: absolute;
    font-size: 600px;
    font-weight: bold;
    font-family: "Work Sans", Arial, sans-serif;
    color: #E2011B;
    bottom: 130px;
    right: 0;
    pointer-events: none;
}

@media only screen and (max-width: 1399px) {
    .about-us-module-big-number {
        font-size: 420px;
        bottom: 90px;
    }   
}

@media only screen and (max-width: 1199px) {
    .about-us-module-big-number {
        left: 0;
        right: auto;
    }
}

@media only screen and (max-width: 991px) {
    .about-us-module {
        padding-bottom: 6rem;
        padding-top: 0;
    }

    .about-us-module-big-number {
        display: none;
    }   

    .about-us-module img {
        display: block;
        margin-bottom: 50px;
    }
}

/* ------------- Numbers Facts Module ------------- */
.numbers-facts-module {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.numbers-facts-module .pre-headline {
    margin-bottom: 100px;
}

.facts-numbers-box {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    line-height: 1.6em;
}

@media only screen and (max-width: 991px) {
    .facts-numbers-box {
        margin-bottom: 30px;
        font-size: 18px;
    }
}

.facts-numbers-box strong {
    font-size: 60px;
    line-height: 60px;
    display: block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1299px) {
    .facts-numbers-box strong {
        font-size: 45px;
        line-height: 45px;
    }   
}

@media only screen and (max-width: 991px) {
    .facts-numbers-box strong {
        font-size: 40px;
        line-height: 40px;
    }   
}

/* ------------- CTA Module ------------- */
.cta-module {
}

.cta-module a {
    display: block;
    color: #2F3231;
    padding: 8rem 0 16rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta-module a .container {
    position: relative;
}

.cta-module .h1 {
    margin-bottom: 30px;
}

.cta-module a .container:after {
    content: "";
    background-image: url(../contact-theme/assets/images/cta-arrow.svg);
    display: block;
    pointer-events: none;
    height: 60px;
    width: 60px;
    background-size: contain;
    position: absolute;
    right: 30px;
    top: 50px;
}

@media only screen and (max-width: 991px) {
    .cta-module a .container:after {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 50px;
    }   
}

/* ------------- Donation Module ------------- */ 
.donation-module {
    background-color: #EFEFEF;
}

.donation-module-text {
    border-top: 1px solid #A7A7A7;
    padding-top: 30px;
}

@media only screen and (max-width: 991px) {
    .donation-module-text {
        margin-top: 50px;
        padding-top: 0;
        border: none;
    }   
}

/* ------------- News Module ------------- */ 
@media only screen and (max-width: 991px) {
    .news-items {
        margin-top: 50px;
    }
}

.news-item {
    border-bottom: 1px solid #A7A7A7;
    padding-bottom: 40px;
    margin-bottom: 45px;
}

.news-item .news-title {
    font-size: 18px;
    font-weight: bold;
    font-family: "Work Sans", Sans-serif;
    margin-bottom: 0;
}

.news-item .news-title a {
    color: #2F3231;
}

.news-item .news-thumbnail {
    height: 120px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A7A7A7;
    border-radius: 13px;
}

@media only screen and (max-width: 767px) {
    .news-item .news-thumbnail {
        height: 400px;
        margin-bottom: 30px;
    }
}

.news-item .news-readmore-container {
    text-align: right;
}

.news-item .news-readmore {
    color: #2F3231;
    font-weight: bold;
    font-family: "Work Sans", Sans-serif;
}

.news-item .news-readmore:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    background-image: url(../contact-theme/assets/images/arrow-submit.svg);
    height: 10px;
    width: 15px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .news-readmore-mobile {
        display: inline;
    }

    .news-readmore-desktop {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .news-readmore-mobile {
        display: none;
    }
}

.news-item .news-date {
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.news-pagination a {
    color: #2F3231;
    display: inline-block;
    margin: 0 5px;
}

/* ------------- Projekte Module ------------- */ 
.project-items {
    margin-top: 50px;
}

.project-item {
    margin-top: 50px;
}

.project-item a {
    display: block;
    color: #2F3231;
}


@media only screen and (min-width: 992px) {
    .project-item-big-mobile {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .project-item-big-desktop {
        display: none;
    }
}

.project-item-big {
    display: flex;
}

.project-item .project-thumbnail {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 13px;
    margin-bottom: 20px;
    position: relative;
}

.project-item-big .project-thumbnail {
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    position: relative;
    width: 60%;
    min-width: 60%;
}

.project-item-big .project-item-info {
    height: 296px;
    margin-top: 2px;
    padding: 50px 50px 100px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    position: relative;
}

.project-item-big .project-item-info .project-read-more {
    display: inline-block;
    height: 76px;
    width: 76px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-image: url(../contact-theme/assets/images/arrow-projects.svg);
    background-position: center bottom;
    background-size: 76px;
    background-repeat: no-repeat;
    transition: right ease-out 0.3s;
}

.project-item-big:hover .project-item-info .project-read-more {
    right: 15px;
}

.project-item .project-thumbnail:after {
    content: "";
    background-color: #fff;
    display: block;
    height: 100px;
    width: 100px;
    border-top-left-radius: 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../contact-theme/assets/images/arrow-projects.svg);
    background-position: center bottom;
    background-size: 76px;
    background-repeat: no-repeat;
    transition: background-position ease-out 0.3s;
}

.project-item a:hover .project-thumbnail:after {
    background-position: bottom right;
}

.project-title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-title a {
    color: #2F3231;
}

.projekt-pagination {
    margin-bottom: 50px;
}

.projekt-pagination .container {
    display: flex;
    justify-content: space-between;
}

.projekt-pagination-prev,
.projekt-pagination-next {
    width: 50%;
}

.projekt-pagination-prev span,
.projekt-pagination-next span {
    text-transform: uppercase;
    font-size: 22px;
    display: block;
    margin-top: 20px;
}

.projekt-pagination-prev {
    text-align: left;
}

.projekt-pagination-next {
    text-align: right;
}

.more-projects-module {
    padding-top: 50px;
}

.more-projects-module .container {
    border-top: 1px solid #DDDDDD;
    padding-top: 50px;
}

/* ------------- Organs Module ------------- */  
.organs-module {
    background-color: #EFEFEF;
}

.organ {
    margin-top: 80px;
}

.organ-title {
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 22px;
}

.person-item {
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .person-item {
        margin-bottom: 50px;
    }
}

.person-image {
    max-width: 80%;
    border-radius: 100%;
}

@media only screen and (max-width: 991px) {
    .person-image {
        max-width: 150px;    
    }
}

.person-name {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

/* ------------- Downloads Module ------------- */  
.downloads-module {
    padding-bottom: 500px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
}

@media only screen and (max-width: 767px) {
    .downloads-module {
        padding-bottom: 8rem;
    }
}

.downloads-container {
    margin-top: 80px;
}

.download-item {
    display: flex;
    color: #2F3231;
    gap: 30px;
    border-bottom: 1px solid #707070;
    padding-bottom: 30px;
    margin-bottom: 30px;
    justify-content: space-between;
    font-family: "Work Sans", Sans-serif;
    letter-spacing: -2px;
}

.download-item:hover {
    color: #E2011B;
}

.downloads-container .download-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .download-item {
        flex-direction: column;
    }
}

.download-icon {
    height: 70px;
    width: 70px;
    border: 1px solid #707070;
    border-radius: 13px;
    background-repeat: no-repeat;
    background-size: 70% auto;
    flex-shrink: 0;
}

.download-info {
    flex-grow: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.download-description {
    margin-bottom: 0;
}

.download-info .download-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0px;
}

.download-info p {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
}

.download-cta {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
}

.download-cta:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    background-image: url(../contact-theme/assets/images/arrow-submit.svg);
    height: 10px;
    width: 15px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

/* ------------- Projek Page ------------- */

.projekt-page-container {
    margin-bottom: 50px;
}

.projekt-page .h1 {
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .projekt-page-content {
        padding-right: 20px;
    }

    .projekt-sidebar-wrapper {
        border-left: 1px solid #DDDDDD;
        padding-left: 50px;
        font-size: 14px;
    }
}

.projekt-page-sidebar div div {
    margin-bottom: 40px;
}

.projekt-page-sidebar strong {
    display: block;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) {
    .projekt-page-sidebar strong {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .projekt-page-sidebar {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #DDDDDD;
    }
}

.projekt-page-sidebar a {
    color: #2F3231;
    text-decoration: underline;
}

.projekt-page-sidebar .cta-button {
    margin-top: 0;
}

.projekt-page .hero-small-module-image-container {
    margin-bottom: 50px;
}

.projekt-page .hero-small-module-image-container.no-image {
    margin-bottom: 0;
}

.projects-overview-module {
    padding-top: 0;
}

.projects-overview-module .projects-overview-hero {
    padding-top: 160px;
    background-color: #EFEFEF;
    padding-bottom: 200px;
    margin-bottom: -200px;
}

.project-categories {
    text-align: center;
    margin-top: 50px;
}

.project-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.project-categories a {
    margin: 10px;
}

.projects-pagination {
    margin-top: 50px;
}
 
.projects-pagination a {
    color: #2F3231;
    display: inline-block;
    margin: 0 5px;
}

.unterseiten-headline {
    margin-top: 50px;
    margin-bottom: 30px;
}