/* Contact Box */

.contactBox {
    position: absolute;
    right: 0;
    width: 50%;
    max-width: 550px;
    padding-top: 30px;
}

.contactBox h2 {
    color: #fff;
}
.contactBox p {
    color: #fff;
    font-size: 15px;
}
.contactBox a {
    color: #fff;
}

.contactThumbnail {
    position: relative;
    z-index: 1;
    width: 100%;
}

.contactBox .gradientBack {
    display: flex;
    background: rgba(120,33,80,1);
    background: linear-gradient(90deg, rgba(120,33,80,1) 0%, rgba(238,116,2,1) 100%);
}

.contactBox .gradientFront {
    position: relative;
    width: 100%;
    background: rgba(177,25,73,1);
    background: linear-gradient(90deg, rgba(177,25,73,.64) 0%, rgba(207,0,85,.64) 40%, rgba(244,152,0,.64) 100%);
    margin-top: -30px;
    margin-left: 30px;
    padding: 70px 70px 50px;
}


/* CTA Box */

.ctaBox {
    padding-top: 30px;
}

.ctaBox h2 {
    color: #fff;
}

.ctaBox .ctaRow {
    gap: 90px;
}
.ctaBox .iconRow {
    flex: 1;
    gap: 60px;
}
.ctaBox .listRow {
    flex: .6;
    gap: 20px;
    flex-direction: column;
}
.ctaBox .iconCol {
    gap: 40px;
}
.ctaBox .textCol {
    gap: 10px;
    color: #fff;
}
.ctaBox .listCol {
    gap: 40px;
    color: #fff;
}
.ctaBox .listColThin {
    gap: 25px;
    color: #fff;
}

.ctaBox .gradientBack.greybg h2,
.ctaBox .gradientBack.greybg .textCol,
.ctaBox .gradientBack.greybg .listCol,
.ctaBox .gradientBack.greybg button.outline{
  color: #000;
}

.ctaBox .gradientBack.greybg button.outline{
  border-color: #000;
}

.ctaBox .gradientBack.greybg button.outline:hover {
  background-color: rgba(0, 0, 0, .05);
}

.ctaBox .gradientBack {
    display: flex;
    background: rgba(120,33,80,1);
    background: linear-gradient(90deg, rgba(120,33,80,1) 0%, rgba(238,116,2,1) 100%);
}

.ctaBox .gradientBack.greybg {
  background: #edf2f4;
}

.ctaBox .gradientFront {
    position: relative;
    width: 100%;
    background: rgba(177,25,73,1);
    background: linear-gradient(90deg, rgba(177,25,73,.64) 0%, rgba(207,0,85,.64) 40%, rgba(244,152,0,.64) 100%);
    margin-top: -30px;
    margin-bottom: 30px;
    padding: 110px 0 50px;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
}

.ctaBox .gradientBack.greybg .gradientFront {
  background: transparent;
  margin-top: 0;
  margin-bottom: 0;
  padding: 80px 0;
}

.iconCircle {
    width: 157px;
    height: 157px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.iconCircle.small {
    width: 100px;
    height: 100px;
}
.iconCircle img {
    height: 50%;
}

.ctaBox button {
    white-space: nowrap;
}

.circleNumber {
    font-size: 28px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaBox .gradientBack.greybg .circleNumber {
  border-color: #000;
}

.ctaBox.sharePost h2{
  margin-bottom: 0;
}

.ctaBox.sharePost .col.iconRow{
  justify-content: flex-end;  
}

@media (max-width: 1280px)
{
    .ctaBox .ctaRow {
        align-items: start;
        flex-direction: column;
        gap: 60px;
    }
    .ctaBox .iconRow {
        flex-direction: column;
        gap: 40px;
    }
    .ctaBox .iconCol {
        flex-direction: row;
        gap: 20px;
    }
    .ctaBox .iconCircle {
        width: 84px;
        height: 84px;
    }
    .ctaBox .col.stretch.imagecol{
      width: 100%;
    }
}

@media (max-width: 800px)
{
    .ctaBox .listCol {
        gap: 25px;
    }
    .circleNumber {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }
}


/* Download Grid */

.downloadGrid {
}

.downloadItem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.downloadItem label {
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
}
.downloadItem h4 {
    margin-top: 15px;
}
.downloadItem p {
    margin: 5px 0 0;
}
.downloadItem input[type="checkbox"] {   
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
}
.downloadItem input[type="checkbox"]:after {    
    position: absolute;
    top: 2px;
    left: 2px;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(177, 25, 73, 1);
    background: linear-gradient(90deg, rgba(177, 25, 73, 1) 0%, rgba(244, 152, 0, 1) 100%);
    opacity: 0;
    transition: opacity .1s ease-in-out;
}
.downloadItem input[type="checkbox"]:checked:after {
    opacity: 1;
}


/* Event List */

.eventList {
}

.eventItem {
    margin-bottom: 20px;
}
.eventItem .eventTitle {
    margin-bottom: 15px;
    font-weight: 800;
}
.eventItem p {
    margin: 0;
}
.eventItem .landscapeImageContainer {
    margin-top: 20px;
}
.eventItem .landscapeImageContainer img {
    width: auto;
    max-height: 400px;
}
.eventColLeft {
    background-color: #EDF2F4;
    padding: 25px;
    box-sizing: border-box;
    height: auto !important;
    flex-basis: 350px;
    flex-shrink: 0;
    flex-grow: 0;
    gap: 15px;
}

@media (max-width: 1024px)
{
    .eventRow {
        flex-wrap: wrap;
    }
    .eventRow > .col {
        flex-basis: 100% !important;
    }
}


/* Featured Posts */

.featuredPosts > .row {
    margin-bottom: 80px;
}

.metaCategory {
    font-weight: bold;
    margin-bottom: 10px;
}

.metaDate {
    text-align: center;
    font-weight: bold;
}

.metaDay {
    font-size: 60px;
    font-weight: bold;
}
.metaDay::after {
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    background: rgba(177, 25, 73, 1);
    background: linear-gradient(90deg, rgba(177, 25, 73, 1) 0%, rgba(244, 152, 0, 1) 100%);
}

.metaMonth {
    text-transform: uppercase;
    font-size: 27px;
    font-weight: bold;
    margin-top: 10px;
}


@media (max-width: 1024px) {

    .featuredPosts > .row {
        flex-wrap: wrap;
    }
    .featuredPosts .col:nth-child(2) {
        flex-basis: 100%;
    }

    .metaDay {
        font-size: 30px;
    }
    .metaMonth {
        font-size: 14px;
        margin-top: 5px;
    }

}


/* Footer Box */

.footerBox {
    background-color: #EDF2F4;
    padding: 70px 0 100px;
    margin-top: 80px;
}

.footerBox h2 {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    
    .footerBox > .container > .row {
        flex-wrap: wrap;
    }
    .footerBox > .container > .row > .col {
        flex-basis: 100%;
    }

}


/* Latest Posts */

.latestPostsItem {
    margin-top: 20px;
    padding-bottom: 20px;
}

.latestPostsItem h4 {
    margin-top: 25px;
}

.latestPosts .latestPostsItem:not(:last-child) {
    border-bottom: 1px solid #000;
}

.latestPosts .latestPostsItem > .col:first-child {
    flex-basis: 100px;
}

.accordionDate {
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
}

.latestPosts .accordion-button {
    padding-top: 15px;
    padding-bottom: 15px;
}
.latestPostImage {
    width: 268px;
}


.loadMorePosts {
    text-align: center;
    margin-top: 25px;
}
.loadMorePosts .loader {
    display: none;
}
.loadMorePosts.loading button {
    background-color: #333;
}
.loadMorePosts.loading button::before {
    display: none;
}
.loadMorePosts.loading .text {
    display: none;
}
.loadMorePosts.loading .loader {
    display: block;
}


/* Member Grid */

.memberGrid .memberItem h3 {
    margin-top: 15px;
    max-width: 450px;
}
.memberGrid .memberItem a h3 {
    background: url('../icons/arrow-r.svg') right 5px no-repeat;
    background-size: 28px 28px;
    padding-right: 40px;
    max-width: 410px;
}
.memberList .memberItem h3 {
    margin-top: 10px;
}

.memberItem p {
    margin: 12px 0 0;
}
.memberItem .accordion-button {
    min-height: initial;
}
.memberImage {
    width: 100%;
    max-width: 450px;
}


@media (max-width: 1024px)
{
    .memberItem {
        flex-wrap: wrap;
    }
    .memberItem > .col {
        flex-basis: 100%;
    }
}

@media (max-width: 800px)
{
  .memberGrid .memberItem a h3 {
    background-size: 22px 22px;
  }
}


/* Teaser */

.teaser h2 {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    
    .teaser > .row {
        flex-wrap: wrap;
    }
    .teaser > .row > .col {
        flex-basis: 100%;
    }

}


/* Textbar */

.textBar {
    background-color: #702356;
}

.textBarText {
    color: #fff;
    font-size: 28px;
    padding: 50px 0;
}

.stoerer {
    position: relative;
    width: 310px;
    color: #fff;
    border-radius: 50%;
    background: #E92962;
    background: linear-gradient(130deg, #792474 0%, #E92962 100%);
    transform: translateY(-25%) rotateZ(-10deg);
}
.stoerer::after {
    display: block;
    content: '';
    padding-bottom: 100%;
}
.stoererContent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 0 40px;
    box-sizing: border-box;
}
.stoererContent h4, .stoererContent h3 {
    margin-bottom: 15px;
}
.stoererContent p {
    margin: 0;
}


/* TEST!!! */
.vc_row {
    overflow: visible !important;
}

@media (max-width: 800px)
{
    .textBar {
        margin-bottom: 140px !important;
    }
    .textbarRow {
        flex-wrap: wrap;
    }
    .textbarRow > .col {
        flex-basis: 100%;
    }
    .textBarText {
        font-size: 22px;
        padding-bottom: 0;
    }
    .stoerer {
        transform: rotateZ(-10deg);
        margin: 0 auto -100px auto;
    }
}


/* Title Box */

.titleBox {
    padding-top: 30px;
    margin-bottom: 70px;
}

.titleBox h1, .titleBox h4 {
    color: #fff;
}

.titleBox .gradientBack {
    display: flex;
    background: rgba(120,33,80,1);
    background: linear-gradient(90deg, rgba(120,33,80,1) 0%, rgba(238,116,2,1) 100%);
}

.titleBox .gradientFront {
    position: relative;
    width: 100%;
    background: rgba(177,25,73,1);
    background: linear-gradient(90deg, rgba(177,25,73,.64) 0%, rgba(207,0,85,.64) 40%, rgba(244,152,0,.64) 100%);
    margin-top: -30px;
    margin-bottom: 30px;
    padding: 70px 0 40px;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
}


/* Topics Slider */

.contentSlider .splide {
    padding-bottom: 100px;
}

.contentSlider .contentSliderImage {
    width: 100%;
    margin-bottom: 50px;
}

.contentSlider .splide__pagination__page {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: transparent !important;
    border: 2px solid #000;
}
.contentSlider .splide__pagination__page::after {
    display: none;
    position: absolute;
    top: 2px;
    left: 2px;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(177, 25, 73, 1);
    background: linear-gradient(90deg, rgba(177, 25, 73, 1) 0%, rgba(244, 152, 0, 1) 100%);
}

.contentSlider .splide__pagination__page.is-active {
    transform: none;
    opacity: 1;
}
.contentSlider .splide__pagination__page.is-active::after {
    display: block;
}

.topicExcerpt {
    max-width: 75%;
}

@media (max-width: 1024px) {

    .topicExcerpt {
        max-width: none;
    }

    .contentSlider .splide {
        padding-bottom: 50px;
    }

}


/* Video Grid */

.videoGrid {
    
}
.videoItem h4 {
    margin-top: 15px;
}
.videoItem p {
    margin: 15px 0 0;
}
.playlistButton {
    margin-top: 90px;
}

@media (max-width: 1024px)
{
    .playlistButton {
        margin-top: 20px;
    }
}


/* Video */

.video video {
    width: 100%;    
}


/* Youtube */

.youtubeVideo {    
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.videoPrivacy {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/video-teaser.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    cursor: pointer;
}
.videoPrivacy > div {    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
}
.videoPrivacy .youtubeLogo {
    width: 200px;
    margin-bottom: 20px;
}
.videoPrivacy p {
    padding: 0 15px;
    margin: 15px 0 0;
}
.videoPrivacy a { color: #fff; }
.videoPrivacy a:hover { color: var(--gradient-headline-end); }
.youtubeFrame {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}
.youtubeVideo.small .youtubeLogo {
    width: 120px;
    margin-bottom: 0;
}
.youtubeVideo.small p {
    margin-bottom: 0;
}

/* Twitter */
.twitterPrivacy {
    /* display: none; */
    max-width: 700px;
    width: 100%;
    border: 1px solid #cfd9de;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color .1s ease-in-out;
}
.twitterPrivacy:hover {
    background-color: #f7f9f9;
}
.twitterPrivacy > div {
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
}
.twitterPrivacy .twitterLogo {
    width: 80px;
    margin: 0 auto 40px;
}
.twitterPrivacy p {
    padding: 0 15px;
    margin: 15px 0 0;
}
.twitterConfirmation {
    display: none;
}
/* .twitterLoading {
    display: none;
} */
.twitterLoading img {
    margin: 0 auto;
}


/* Social Media Bar */

.row.socialmediabar{
  padding-top: 50px;
  align-items: flex-end;  
}
.socialmediabar h2 {
    color: #fff;
    margin-bottom: 0;
}
.socialmediabar .socialMenu{
  margin-bottom: 14px;
}
.socialmediabar .socialMenu .icon {
    width: 50px;
    height: 50px;
}

@media (max-width: 1280px) {
    .ctaBox .ctaRow.socialmediabar {
        gap: 20px;
        align-items: flex-start;  
    }
}
@media (max-width: 800px) {
    .row.socialmediabar{
      padding-top: 30px;
    }
    .socialmediabar .socialMenu .icon {
        width: 45px;
        height: 45px;
    }
}


.subcontainer-anti-padding {
    margin: 0 calc(var(--content-padding) * -1);
}
@media (max-width: 800px) {
    .subcontainer-anti-padding {
        margin: 0;
    }
}