#alt-caption {
    position: absolute;
    bottom: 4vw;
    color: #FFFFFF;
    font-family: 'MainFontLight';
    text-transform: uppercase;
    font-size: 312%;
    z-index: 300;
    line-height: 110%;
    left: 5%;
}
.cycle-slideshow {
    position: relative;
    overflow: hidden;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    max-height: 700px;
    width: 100%;
}
.cycle-slideshow a {
    right: 0;
    bottom: 0 !important;
}
.cycle-prev, .cycle-next {
    background: rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 90px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -45px;
    z-index: 300;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}
.cycle-next {
    left: inherit;
    right: 0;
}
.cycle-prev:hover, .cycle-next:hover {
    background: rgba(255, 255, 255, 0.7);
}
.cycle-prev-arrow, .cycle-next-arrow {
    width: 20px;
    height: 45px;
    margin: 23px 20px 0 20px;
}
.cycle-svg {
    fill:none;
    stroke:#fff;
    stroke-width:2;
}
@media only screen and (max-width: 1280px) {
    #alt-caption {
        font-size: 3.5vw;
    }
}

@media only screen and (max-width: 1180px) {
    #alt-caption {
        max-width: 50vw;
    }
}
@media only screen and (max-width: 1024px) {
    .cycle-prev, .cycle-next {
        width: 40px;
        height: 60px;
        margin-top: -30px;
    }
    .cycle-prev-arrow, .cycle-next-arrow {
        width: 15px;
        height: 25px;
        margin: 18px 13px 0 13px;
    }
    .cycle-prev-arrow svg, .cycle-next-arrow svg {
        enable-background: new 0 0 15 25;
        width: 15px;
        height: 25px;
    }
}


/* linkbox */
.linkbox {
    background: #F0F0F0;
    position: relative;
}

.linkboxinner {
    padding: 20px 60px 20px 20px;
}

.linkbox.nolink .linkboxinner {
    padding: 20px;
}

.linkbox.withlink > a {
    display: block;
    font-family: 'MainFont';
}

.linkbox .linkbox-title {
    text-transform: uppercase;
    line-height: 140%;
    color: #FF4500;
    font-size: 120%;
    font-family: 'MainFont';
    margin-bottom: 0.2em;
}

.no-touch .linkbox.withlink:hover {
    background: #FF4500;
}

.no-touch .linkbox.withlink:hover .linkbox-title {
    color: #FFFFFF;
}

.contentarea > .frame-type-gridelements_pi1:nth-child(2n) .linkbox {
    background: #FFFFFF;
}

.linkbox-subtitle {
    color: #646464;
}

.no-touch .linkbox.withlink:hover .linkbox-subtitle, .no-touch .linkbox.withlink:hover a {
    color: #FFFFFF;
}

.linkbox-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -24px;
}

.linkbox .arrow {
    fill:none;
    stroke:#FF4500;
    stroke-miterlimit:10;
}
.linkboxinner:hover .arrow {
    stroke:#FFFFFF;
}
.t3ddy-item .linkbox {
    background: #FFFFFF;
}

/* shortcuts */
.shortcutarea {
    position: absolute;
    right: 3%;
    top: 100px;
    width: 45px;
    z-index: 3000;
}

.shortcutarea.fixed {
    position: fixed;
}

.shortcutarea .tooltip {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    margin-bottom: 8px;
    background: #FF4500;
    cursor: pointer;
    border: 1px solid #FFFFFF;
}

.shortcutarea a {
    color: #ffffff;
    display: block;
    height: 45px;
    line-height: 45px;
}

.shortcutarea .tooltip:hover {
    color: #FFFFFF;
    background: #E8270C;
}

.shortcutarea .tooltip:hover > span {
    color: #FFFFFF;
}

.shortcutarea .iconfont, .shortcutarea .iconfontbrands, .shortcutarea .iconfontsolid, .shortcutarea .iconfontlight {
    color: #FFFFFF;
    font-size: 20px;
    height: 45px;
    line-height: 45px;
}

.shortcut-iconimage img {
    max-width: 22px;
    max-height: 22px;
    margin: 0 auto;
}

.tooltip {
    position: relative;
    text-decoration: none;
}

.tooltip:after {
    content: attr(data-tooltip);
    position: absolute;
    top: 6px;
    right: 57px;
    background: #FF4500;
    padding: 5px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    white-space: nowrap;
    display: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    line-height: 25px;
    height: 25px;
    font-family: 'MainFont', Verdana, sans-serif;
    font-size: 16px;
}

.tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid #FF4500;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    right: 47px;
    top: 16px;
}

.tooltip:hover:after, .tooltip:hover:before {
    display: block;
}

@media only screen and (max-width: 800px) {
    .shortcutarea {
        display: flex;
        width: 100%;
        justify-content: center;
        right: 0;
        top: 10px;
    }

    .shortcutarea > span {
        margin: 0 5px;
    }

    #page .shortcutarea > .top-fixed {
        display: none;
    }

    .startseite .contentarea {
        padding-top: 67px;
    }
}

.photo-gallery-itemwrap {
    display: none;
}

.paginator-content a {
    display: block;
}

.photo-gallery-item:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.photo-gallery-itemouter {
    width: 16.66%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 5px solid transparent;
    float: left;
    margin: 0;
}

.photo-gallery-item {
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
}

.no-touch .photo-gallery-itemouter:hover .photo-gallery-item {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.paginator-content {
    padding: 0;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.photo-gallery-caption {
    position: absolute;
    top: 48%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    color: #FFFFFF;
    transition: opacity 0.4s ease 0s;
    -webkit-transition: opacity 0.4s ease 0s;
    -moz-transition: opacity 0.4s ease 0s;
    z-index: 20;
    text-align: center;
}

.photo-gallery-captionarrow {
    font-size: 40px;
    margin-top: 1rem;
}

.photo-gallery-withlink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease 0s;
    -webkit-transition: opacity 0.4s ease 0s;
    -moz-transition: opacity 0.4s ease 0s;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.photo-gallery-withlink:hover .photo-gallery-caption, .photo-gallery-withlink:hover::before {
    opacity: 1;
}

@media only screen and (max-width: 1024px) {
    .photo-gallery-itemouter {
        width: 20%;
    }
}


@media only screen and (max-width: 800px) {
    .photo-gallery-itemouter {
        width: 25%;
    }

    .photo-gallery-caption {
        font-size: 1.6vw;
    }

    .photo-gallery-captionarrow {
        font-size: 30px;
    }
}

@media only screen and (max-width: 500px) {
    .photo-gallery-itemouter {
        width: 33.33%;
    }
}

