/* .... LAZY BLOCKS.... */

:root {
    --primary-clr: #050549;
    --body-clr: #333;
    --light-grey: #f3f3f3;
    --cta-clr: #f0100a;
	--darker-cta-clr: #9f0703;
    --dark-grey: #272727;
    --font-headlines: 'Montserrat', Helvetica, sans-serif;
    --font-headlines-weight: 800;
    --font-body: 'Noto Sans', sans-serif;
    --mobile-breakpoint: 800px;
    --desktop-breakpoint: 801px;
}

/* .... ABSTAENDE .... */

.lazy-margin {
    margin-top: 7rem;
    margin-bottom: 7rem;
}
.lazy-top-margin {
    margin-top: 7rem;
}
.lazy-bottom-margin {
    margin-bottom: 7rem;
}


/* .... FULLWIDTH SECTION .... */
.fullwidth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.fullwidth.fullwidth-dark {
    background-color: var(--primary-clr);
    color: #fff;
}
.fullwidth.fullwidth-light {
    background-color: var(--light-grey);
}
.fullwidth.fullwidth-cta {
    background-color: var(--cta-clr);
    color: #fff;
}
.fullwidth.overlay {
    position: relative;
}
.fullwidth.overlay::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.fullwidth .fullwidth-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    padding: 0px 40px;
    margin: 0 auto;
}
.fullwidth.fullwidth-padding .fullwidth-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.fullwidth .lazyblock-inner-blocks h1:first-child,
.fullwidth .lazyblock-inner-blocks h2:first-child,
.fullwidth .lazyblock-inner-blocks h3:first-child {
    margin-top: 0;
}
.entry-content > .wp-block-lazyblock-fullwidth-section:last-child {
    margin-bottom: -8rem;
}
/* weisse schrift dark */
.fullwidth.fullwidth-dark h2,
.fullwidth.fullwidth-dark h3,
.fullwidth.fullwidth-parallax h2,
.fullwidth.fullwidth-parallax h3,
.fullwidth.fullwidth-parallax {
    color: #fff;
}
/* parallax */
.fullwidth-parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.fullwidth.imageonly .fullwidth-content {
    height: 400px;
}
/* ios hack (hier funktioniert der parallax effekt nicht */
@supports (-webkit-hyphens:none){
    .fullwidth-parallax {
        background-attachment: local;
        background-size: auto;
    } 
}


/*
.wp-block-lazyblock-fullwidth-section + .wp-block-lazyblock-fullwidth-section {
    margin-top: -6rem;
}
*/



/* .... HERO .... */
#hero {
  position: relative;
  width: 100vw;
  overflow: hidden;
  margin-bottom: 6rem;
}
#hero.fullscreen {
    height: 100vh; /* Vollbildhöhe */
}
#hero.hero-nomargin {
    margin-bottom: 0;
}
#hero::before {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    content: '';
    display: block;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); */
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0.8) 30%,rgba(0,0,0,0) 100%);
}
@media (max-width: 1200px) {
    #hero::before {
        height: 250px;
    }
}
@media (max-width: 800px) {
    #hero::before {
        height: 150px;
    }
}

#hero::after {
    content: '';
    position: absolute;
    z-index: 9;
    bottom: -7px;
    left:0;
    right:0;
    height: 80px;
    background: url(../gfx/hero-bottom.webp) no-repeat;
    background-size: cover;
}

#hero img {
    display: block;
	width: 100%;
}
#hero.fullscreen img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Bereich, ohne Verzerrung */
    z-index: 1;
}
  
/* Video */
#hero .video-container {
    width: calc(100%) !important;
    height: calc(100%) !important;
}
#hero #video {
    position: absolute;
    z-index: 5;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
}
#hero #video-controls button {
    position: absolute;
    z-index: 7;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}
#hero #video-controls i {
    position: absolute;
    z-index: 100;
    left: 0;
    bottom: 80px;
    margin-left: 36px;
}


#hero #play-pause {
    background: transparent;
    font-size: 2.5rem;
}
#hero.fullscreen img.copyright {
    bottom: 70px;
    top: inherit;
    right: 3%;
    left: inherit;
    z-index: 9;
    width: 130px;
    height: auto;
    max-width: 20%;
    opacity: 0.8;
}


/* Hero Content */
@media (max-width:768px) {
    #hero + .textbox.grid-container {
        margin-top: -3rem;
        margin-bottom: 4rem;
    }
    #hero + .textbox .content {
        border: 4px solid var(--cta-clr);
        border-radius: 1px;
        padding: 15px 20px 20px;
    }
    #hero .hide-mobile {
        display: none;
    }
}

@media (min-width:769px) {
    #hero .textbox.grid-container {
        position: absolute;
        z-index: 10;
        bottom: 100px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: flex-end;
        width: 100%;
        padding: 0 30px;
    }
    #hero .textbox.grid-container {
        padding: 0 40px;
    }
    #hero .content {
        border: 4px solid #fff;
        border-radius: 1px;
        padding: 15px 20px 20px;
        width: 500px;
        max-width: 90%;
        background: rgba(0, 0, 0, 0.3);
        color: #fff;
    }
    #hero + .hide-desktop {
        display: none;
    }
}

#hero > div:not(.box-below) .textbox {
  width: 400px;
  background: rgba(255,255,255,0.7);
}
@media (max-width:767px) {
  #hero div:not(.box-below) .textbox {
    display: none;
  }
}
#hero .text {
    padding: 20px;
    font-size: 1rem;
}
#hero .headline,
#hero + .textbox .headline {
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--font-headlines);
}
#hero .item {
    margin-top: 5px;
    border-top: 1px solid #fff;
    padding-top: 5px;
}
#hero .item:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}



/* .... SLIDESHOW (Hero und Content) .... */
.slideshow {
    position: relative;
}
.slideshow img {
    width: 100%;
    height: auto;
}
.slideshow .slide {
    position: relative;
}
.slideshow .slide img.line {
    position: absolute;
    top:0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
}
.slideshow .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 2rem;
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}
.slideshow .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    background-position: left center;
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: all 0.5s;
}
.slideshow .slick-arrow:hover {
    transform: scale(1.1);
}
.slideshow .slick-arrow::before {
    display: none;
}
.slideshow .slick-prev { 
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg height='100px' width='100px' fill='%2321b5ea' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' style='enable-background:new 0 0 24 24;'%3E%3Cg%3E%3Cpath d='M250.326 364.429L408.983 462.355C416.542 467.028 426 461.187 426 451.858L426 335.995C426 331.659 423.835 327.658 420.325 325.49L326.274 267.438C318.708 262.773 318.708 251.1 326.274 246.435L420.325 188.383C423.835 186.215 426 182.214 426 177.878L426 60.1465C426 50.8094 416.542 44.9766 408.983 49.6415L250.326 147.567L91.6695 245.501C84.1102 250.165 84.1102 261.831 91.6695 266.503L250.326 364.429Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.slideshow .slick-next {
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg height='100px' width='100px' fill='%2321b5ea' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' style='enable-background:new 0 0 24 24;'%3E%3Cg%3E%3Cpath d='M261.674 147.571L103.017 49.6446C95.4577 44.9724 86 50.8126 86 60.1424V176.005C86 180.341 88.1646 184.342 91.6746 186.51L185.726 244.562C193.292 249.227 193.292 260.9 185.726 265.565L91.6746 323.617C88.1646 325.785 86 329.786 86 334.122V451.854C86 461.191 95.4577 467.023 103.017 462.359L261.674 364.433L420.331 266.499C427.89 261.835 427.89 250.169 420.331 245.497L261.674 147.571Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

@media (min-width:768px) {
    .slideshow .slick-arrow {
        margin-top: -30px;
        width: 60px;
        height: 60px;
        background-size: 60px 60px;
    }
}
@media (min-width:1000px) {
    .slideshow .slick-arrow {
        margin-top: -35px;
        width: 70px;
        height: 70px;
        background-size: 70px 70px;
    }
}
@media (min-width:1400px) {
    .slideshow .slick-arrow {
        margin-top: -40px;
        width: 80px;
        height: 80px;
        background-size: 80px 80px;
    }
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    background: none !important;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-size: 70px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--ag-midnight);
}



/* .... ACCORDION .... */
.wp-block-lazyblock-accordion {
    margin-top: 2em;
    margin-bottom: 2em;
    padding-bottom: 2em;
}
.accordion-container,
.accordion-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.wp-block-lazyblock-accordion .grid-container {
    padding-left: 0;
}
button.accordion,
h3.accordion,
h3.accordion {
    background-color: var(--primary-clr);
    color: #fff;
    cursor: pointer;
    margin: 0;
    padding: 10px 20px 8px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 1.2rem;
    font-family: var(--font-body);
}
button.accordion:hover,
button.accordion:focus,
h3.accordion:hover,
h3.accordion:focus {
    background-color: var(--darker-primary-clr);
}
.wp-block-lazyblock-accordion button.accordion.active {
    background-color: var(--darker-primary-clr);
}
button.accordion:after,
h3.accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: normal;
    float: right;
    margin-left: 5px;
    font-size: 1.4em;
    margin-top: 0;
    line-height: .7em;
}
button.accordion.active:after,
h3.accordion.active:after {
    content: "\2212";
}
button.accordion + .panel,
h3.accordion + .panel {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 15px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.accordion + .panel .panel-content {
    padding: 2rem 0;
    padding: 20px 20px 20px;
    background: #f3f3f3;
}
.accordion + .panel p {
    margin: 0 0 20px;
    max-width: 100% !important;
}






/* .... TEAM .... */
.team-card {
    background: transparent;
}

/* kachel */
.team-tiles .tiles {
    display: flex;
    flex-direction: column; 
}
.team-tiles .tiles .image {
    display: flex;
    justify-content: center;
}
.team-tiles .tiles .text {
    text-align: center;
}
/* bild und text */
.team img {
    display: block;
}
.team .text {
    padding: 15px;
    text-align: center;
}
.team .text p.name {
    margin-bottom: 0;
}
.team .text .title {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2em;
}

/* bild rechts */
.team-card.img-right:not(.noimage) {
    display: grid;
    grid-template-columns: 66.66666% 33.33333%;    
    gap: 1rem;
}
.team-card.img-right .image {
    order: 2; 
}
.team-card.img-right .text {
    order: 1; 
}

/* bild links */
@media (min-width:650px) {
    .team-card.img-left:not(.noimage) {
        display: grid;
        grid-template-columns: 33.33333% 66.66666%;    
        gap: 1rem;
    }
}
.team .img-left .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


/* MULTIPLE */
.team-tiles.team-multiple .image {
    display: block;
    position: relative;
    margin-bottom: 1.3rem;
    padding-bottom: 60%;
    height: 0;
}
.team-tiles.team-multiple img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}


/* .... KONTAKT .... */
.entry-content .contact {
    margin-bottom: 2em;
}
.contact .title {
    font-weight: 600;
    margin-bottom: 5px;
}
.contact i {
    width: 25px;
    margin-left: -5px;
    margin-top: 3px;
    font-size: 23px;
    text-align: center;
}
main.site-main .contact p {
    margin-left: 0;
}
main.site-main .contact i {
    color: var(--primary-clr);
}
.contact > div {
    display: flex;
    margin-top: 15px;
}
.contact > div.email {
    margin-top: 0px;
}
.footer-widgets .contact .email {
    margin-top: 0;
}





/* .... TEASER .... */
.teaser {
    position: relative;
}
.teaser.teaser-more {
    padding-top: 1rem;
}
.teaser a.button-more {
    position: absolute;
    top: -4rem;;
    right: 0;
}


/* .... TEASERBOX .... */
.teaserbox {
    padding: 0;
    color: #555;
}
.fullwidth .teaserbox {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    border: none;
}
.teaserbox h3 {
    margin-top: 15px;
    text-align: center;
    color: var(--primary-clr) !important;
    line-height: 1.2em;
}
.teaserbox .text {
    margin-bottom: 15px;
    text-align: center;
}
.teaserbox .text p {
    margin-bottom: 0;
}
.teaserbox a.button {
    display: block;
    text-align: center;
    color: var(--cta-clr) !important;
}


/* teaser tiles */
.teaser-tiles .teaserbox {
    position: relative;
    min-height: 300px;
}
.teaser-tiles .teaserbox .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.teaser-tiles .teaserbox .image {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.teaser-tiles .teaserbox .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.teaser-tiles .teaserbox .textbox {
    position: relative;
    z-index: 10;
    max-height: 90px;
    background: rgb(0, 0, 0, 0.6);
    padding: 1rem;
    transition: all 0.5s ease-in-out;
}
.teaser-tiles .teaserbox .textbox h3 {
    margin: 0;
    color: #fff !important;
}
.teaser-tiles .teaserbox .textbox h3::after {
    display: none;
}
.teaser-tiles .teaserbox .textbox .text {
    height: 0;
    overflow: hidden;
    margin: 0;
    color: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.teaser-tiles .teaserbox:hover .textbox {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.teaser-tiles .teaserbox:hover .text {
    height: auto;
    opacity: 1;
}
.teaser-tiles .teaserbox .textinner {
    padding-top: 15px;
}
.teaser-tiles .teaserbox a.button {
    display: none;
    padding-left: 0;
}
.teaser-tiles .teaserbox:hover a.button {
    display: block;
    color: var(--cta-clr) !important;
}


/* ... BILD MIT TEXT .... */
.bild-text {
    background: transparent;
}
.bild-text:not(.fullwidth) {
    margin: 3rem 0;
}
.bild-text.img-right .text {
    order: -1;
}
.bild-text .img {
    position: relative;
    overflow: hidden;
}

.bild-text.fullwidth .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.bild-text .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
}
.bild-text.padding .text {
    padding: 4rem 40px;
}
.bild-text .text .inner  {
    width: 100%;
}
.bild-text .text .lazyblock-inner-blocks *:first-child {
    margin-top: 0;
}
.bild-text .text p {
    margin-left: 0;
}
@media (min-width:1001px) {
    .bild-text {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .bild-text .text .inner  {
        max-width: 100%;
        width: 620px;
        margin-right: 0;
        margin-left: auto;
    }
    .bild-text.img-medium .text .inner  {
        width: 845px;
    }
    .bild-text.img-left .text .inner  {
        margin-right: auto;
        margin-left: 0;
    }
    .bild-text.img-medium {
        grid-template-columns: 65% 35%;
    }
    .bild-text.img-medium:not(.fullwidth) .text .inner {
        width: auto;
    }
}

.bild-text .gallery a {
    display: block;
    position: relative;
}
.bild-text .gallery a::after {
    content: "\f002";
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px 8px 8px 8px;
    background: var(--cta-clr);
    color: #fff;
    font-family: "Font Awesome 7 Pro";
    display: inline-block;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    opacity: 0.9;
}
.bild-text .gallery a:hover::after {
    opacity: 1;
}


/* .... DOWNLOAD .... */
.downloads {
    margin: 2rem 0;
}
.download {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}
.download .fas {
    font-size: 1.4rem;
    color: var(--primary-clr);
    margin-right: 10px;
}
.download a {
    line-height: 1.2em;
    font-size: 1.1rem;
}
.downloads i {
    font-size: 1.3rem;
    margin-right: 8px;
}

.downloads.center {
    display: flex;
    gap: 1.5rem;
    margin: 0 auto;
    justify-content: center;
}
.downloads.center .download {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    background: var(--light-grey);
    padding: 17px 20px;
}
.downloads.center .download:hover {
    background: #e1dfdf;
}




/* .... NEWS HOME .... */
.news-home {
    display: grid;
}
.news-home .gfx {
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.news-home .title {
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-home .title .headline {
    margin: 3rem 0;
    text-align: center;
    color: #fff;
    font-weight: 900;
    font-size: 12rem;
    font-size: 30vw;
    text-shadow: 0 20px 0 rgba(255,255,255,0.2);
}
@media (min-width: 800px) {
    .news-home .title .headline {
        margin: 0;
        font-size: 7.5rem;
        font-size: 15vw;
    }
} 
@media (min-width: 1000px) {
    .news-home .title .headline {
        font-size: 9.5rem;
        font-size: 15vw;
    }
} 
@media (min-width: 1200px) {
    .news-home .title .headline {
        font-size: 12rem;
        font-size: 15vw;
    }
} 

.news-home .post {
    position: relative;
    padding: 2rem 3rem 7rem;
    background: var(--primary-clr);
    color: #fff;
}
.news-home .post-3 {
    background: var(--dark-grey);
}
.news-home .text {
    max-width: 800px;
    margin: 0 auto;
}
.news-home a:link,
.news-home a:visited {
    color: #fff;
    transition: all 0.5s;
} 
.news-home a.read-more {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    padding: 0;
    margin: 0;
    background: transparent;
    font-size: 2rem;
    transition:all 0.5s;
}
.news-home a.read-more:hover,
.news-home a.read-more:focus {
    background: transparent;
    transform: scale(1.05);
    color: var(--cta-clr);
}
.news-home a.read-more span {
    display: none;
}
.news-home a:hover,
.news-home a:focus {
    color: var(--cta-clr);
} 
.news-home .post-meta {
    display: none;
}
.news-home .post-2 .excerpt,
.news-home .post-3 .excerpt {
    display: none;
}

@media (max-width: 799px) {
    .news-home .title {
        order: 1;
    }
    .news-home .post-1 {
        order: 2;
    }
    .news-home .post-2 {
        order: 4;
    }
    .news-home .post-3 {
        order: 6;
    }
    .news-home .gfx-1 {
        order: 3;
    }
    .news-home .gfx-2 {
        order: 5;
    }

}
@media (min-width: 800px) {
    .news-home {
        grid-template-columns: 1fr 1fr;
    }
    .news-home .title {
        order: 1;
    }
    .news-home .post-1 {
        order: 2;
    }
    .news-home .post-2 {
        order: 3;
    }
    .news-home .post-3 {
        order: 6;
    }
    .news-home .gfx-1 {
        order: 4;
    }
    .news-home .gfx-2 {
        order: 5;
    }
}

@media (min-width: 1200px) {
    .news-home {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .news-home .title {
        order: 4;
    }
    .news-home .post-1 {
        order: 1;
    }
    .news-home .post-2 {
        order: 3;
    }
    .news-home .post-3 {
        order: 5;
    }
    .news-home .gfx-1 {
        order: 2;
    }
    .news-home .gfx-2 {
        order: 6;
    }
    .news-home a.read-more {
        font-size: 3rem;
    } 

}


/* .... TEASER GIMMICK .... */
.gimmick {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
    margin-top: 9rem;
    margin-bottom: 9rem;
}
.gimmick .topic {
    position: relative;
    padding-bottom: 140%; 
    height: 0;
}
.gimmick .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #000;
} 
.gimmick .title {
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
}
.gimmick h3 {
    margin: 0;
    padding: 5px 15px;
    background: #fff;
    font-size: 2rem;
    font-size: 2.5vw;
    color: var(--cta-clr);
}
.gimmick .img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    transition: all 0.5s;
}
/* motocross */
.gimmick .motocross {
    margin-top: 5rem;
}
.gimmick .motocross .img {
    bottom: 23px;
}
.gimmick .motocross:hover .img {
    bottom: 40px;
    left: -15px;
}

/* strecke */
.gimmick .strecke .img {
    top: 0;
    left: -2rem;
    right: -2rem;
    align-items: center;
}
.gimmick .strecke img {
    transition: all 0.5s;
}
.gimmick .strecke:hover img {
    transform: scale(1.05);
}

/* enduro */
.gimmick .enduro {
    margin-top: 5rem;
}
.gimmick .enduro .img {
    overflow: hidden;
}
.gimmick .enduro img {
    transition: all 0.5s;
}
.gimmick .enduro:hover img {
    transform: scale(1.05);
}

@media (max-width: 550px) {
    .gimmick {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 700px) {
    .gimmick {
        gap: 2.5rem;
        margin-top: 5rem;
        margin-bottom: 6rem;
    }
    .gimmick .title {
        bottom: -3rem;
        height: 2.8rem;
    }
    .gimmick h3 {
        padding: 0;
        font-size: 1.2rem;
        font-size: 4.0vw;
    }
    .gimmick .motocross .img {
        bottom: 3px;
    }
}
@media (max-width: 1000px) {
    .gimmick {
        gap: 3rem;
        margin-top: 7rem;
        margin-bottom: 7rem;
    }
    .gimmick h3 {
        padding: 3px 10px;
        font-size: 1.4rem;
        font-size: 3vw;
    }
}
@media (min-width: 1300px) {
    .gimmick h3 {
        font-size: 2rem;
    }
}


/* .... SPONSOREN .... */
.sponsors .logo {
    display: flex;
    align-items: center;
}
.sponsors img {
    width: 100%;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.sponsors a:hover img,
.sponsors a:focus img {
    -webkit-transform: scale(1.15);
    transform: scale(1.05);
}
@media (min-width:550px) and (max-width:999px) {
    .sponsors.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* .... VIDEO MIT TRANSCRIPT .... */
.video-transcript .wp-block-video {
    position: relative;
}
.video-transcript .wp-block-video img.copyright {
    position: absolute;
    z-index: 10;
    bottom: 70px;
    right: 3%;
    width: 130px;
    height: auto;
    max-width: 20%;
    opacity: 0.7;
}
.video-transcript .wp-element-caption {
    margin-top: 10px;
}