.content ul {
    padding-left: 2.5em;
}

.show {
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity 0.2s !important;
}

/* Tabs */
.tab-header {
    border-bottom: 0.15em solid #9ac23b;
    margin: 0;
    overflow-x: auto;
    white-space: nowrap;
}

button.tab {
    background: none;
    border: none;
    border-bottom: 0.25em solid #9ac23b00;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    margin: 0;
    padding: 0.25em 0.75em;
    text-decoration: none;
    transition: border-color 0.2s;
}

button.tab.selected {
    border-color: #9ac23b;
    font-weight: bold;
    cursor: inherit;
}

button.tab:hover:not(.selected) {
    text-decoration: underline;
}

.tabs {
    align-items: start;
    justify-items: center;
    display: grid;
    padding: 20px 10px 0px;
}

.tabs>* {
    width: 100%;
    visibility: hidden;
    grid-column: 1/1;
    grid-row: 1/1;
    opacity: 0;
    transition: visibility 0s 0.2s, opacity 0.2s;
}

/* Popup */
.popup {
    position: relative;
    cursor: pointer;
}

.popup .popuptext {
    visibility: hidden;
    background-color: #818285;
    padding: 1em 1em 1em 2em;
    position: absolute;
    z-index: 1;
    /* Above link */
    /* bottom: 0.75em;
    left: 1em; */
    /* Next to link */
    top: 50%;
    right: 0em;
    transform: translateY(-50%);
    border-radius: 5px;
    border: 2px solid white;
    opacity: 0;
    transition: visibility 0s 0.2s, opacity 0.2s;
}

/* Popup arrow (left) */
.popup .popuptext::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -0.5em;
    border-width: 0.5em;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

/* Popup arrow (below) */
/* .popup .popuptext::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5em;
    border-width: 0.5em;
    border-style: solid;
    border-color: white transparent transparent transparent;
} */

/* Figure/Icon area on the left */
.hover-underline:hover {
    cursor: pointer;
    text-decoration: underline;
}

.container .left.centerhv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .left a.figurecontainer {
    padding-left: 50px;
    transform: scale(1.0);
    transition: transform 0.2s;
}

.container .left a.figurecontainer:hover figcaption {
    text-decoration: underline;
}

.container .left a.figurecontainer:hover {
    transform: scale(1.03);
    transition: transform 0.2s;
}

.container figure {
    position: relative;
    text-align: left;
}

.container .left figure.bordered::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -12%;
    height: 124%;
    width: 83%;
    background-color: #688926;
}

.container figure img {
    width: 100%;
}

.container figure.bordered img {
    display: block;
    position: inherit !important;
    width: 100% !important;
    border-radius: 5px;
    border: 10px solid white;
    height: auto;
}

.container figcaption {
    position: absolute;
    left: 10%;
    right: 0px;
    top: 88%;
    padding: 3px;
    background-color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.container .bordered figcaption {
    left: 20px;
    right: 0px;
    top: auto;
    bottom: 20px;
    color: #688926;
}

.container.features figcaption {
    color: #688926;
}

.container.contact figcaption {
    color: #2f5066;
}

@media(min-width:1900px) {
    .container figcaption {
        font-size: 130%;
        padding: 8px;
    }
}

.smallscreenimg {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 80px;
    display: none;
}

@media (max-width: 1200px) {
    .smallscreenimg {
        display: block;
    }

    .container figure.bordered img {
        border-radius: 2px;
        border: 5px solid white;
    }

    .container figcaption {
        position: absolute;
        height: fit-content;
        left: 0px;
        right: 0px;
        padding: 3px;
    }

    .container .bordered figcaption {
        position: absolute;
        left: 10px;
        right: 0px;
        top: auto;
        bottom: 10px;
    }
}