/* Bundled triptych styling */
.triptych {
    min-height: 100vh;
    color: #ffffff;
    position: relative;
    font-weight: 700;

    display: -webkit-flex;
    display: flex;
}
.triptych-logo.svg {
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    margin: auto;
    width: 180px;
    z-index: 150;
    opacity: 0;
}
body:not(.logo-condensed) .triptych-logo {
    opacity: 1;
}
.triptych .panel {
    font-family: 'Bau', 'brandon-grotesque', sans-serif;
    width: 33.3333%;
    text-align: center;
    padding: 0 50px;
    box-sizing: border-box;
    position: relative;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.4;

    background-color: transparent;
}
.triptych .panel:hover {
    background-color: #b4d6ce;
    color: #ffffff;
}
.triptych .panel .bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;

    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
body:not(.scrolled-down) .triptych .panel .overlay {
    background-color: rgba(70, 70, 70, 0.8);
}
.not-mobile .triptych .panel:hover .overlay,
.triptych .panel:focus .overlay {
    background: rgba(52, 96, 66, 0.4);
}
.triptych h2 {
    font-family: 'pollen-web';
    line-height: 1.1;
    font-size: 36px;
    margin: 0 auto 15px;
    position: relative;
}
.panel {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.panel .text-wrap {
    height: 50%;
    font-weight: 500;
    position: relative;
}
.not-mobile .pager {
    display: none;
}
.pager {
    top: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 110;
    line-height: 1;
    font-size: 0;
    text-align: center;
    position: relative;
    left: 15px;
}
.triptych .pager {
    position: absolute;
    top: initial;
    right: 0;
    left: 0;
    -webkit-transform: none;
    transform: none;
}
.pager span {
    display: inline-block;
    padding: 5px 3px;
    cursor: pointer;
}
.pager .active .dot {
    opacity: 1;
}
.teller-featured .nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    z-index: 100;
    height: 45px;
    margin: auto;
    cursor: pointer;
    padding: 0 10px;

    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.teller-featured .nav.next {
    right: 20px;
    left: initial;
}
.triptych .read-more{
    margin: 10px;
    background-color: #9ad4c7;
    border: 2px solid #ffffff;
    color: #000000;
    padding: 4px 20px;
    font-size: 15px;
    display: inline-block;
    margin-top: 30px;
    font-family: 'TradeGothic', sans-serif;
    opacity: 0;

    position: relative;

    transition: opacity 0.4s;
}
.not-mobile .triptych .panel:hover .read-more {
    opacity: 1;
}

@media (max-width: 850px) {
    .triptych .panel {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 10;

        display: -webkit-flex !important;
        display: flex !important;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .panel .text-wrap {
        height: initial;
    }
    .triptych h2 {
        margin-top: 0;
    }
    .triptych .pager {
        bottom: 80px;
    }
    .to-top {
        z-index: 150;
    }
    .triptych .read-more {
        opacity: 1;
    }
}
