.explore-page {
    background-size: 100%;
    background-repeat: repeat-y;
    background-color: #1b4673;
    padding: 15px;
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    text-transform: uppercase;
    padding-bottom: 20px;
    column-gap: 40px;
    row-gap: 10px;
}

.explore-link-container {
    max-height: 25px;
    padding-right: 12px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 3px solid white;
    cursor: pointer;
}

.explore-link-selected,
.explore-link-container:hover {
    border-bottom: 3px solid #fc0;
}

.explore-link-selected,
.explore-link-selected .explore-link {
    cursor: default;
}

.explore-link {
    font-size: 1.1em;
    color: white;
    overflow: hidden;
    text-align: left;
    padding-bottom: 5px;
    text-decoration: none;
    font-weight: 600;
}

.explore-link-long {
    display: none;
}

.explore-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.explore-box {
    display: flex;
    flex-direction: row;
}

.explore-box-image-container {
    margin-left: 0px;
    position: relative;
    max-width: 60%;
    max-height: 270px;
    overflow: hidden;
    flex: 0 0 60%;
    order: 1;
}

.explore-box-image-link {
    display: block;
}

.explore-box-image-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Content/Images/categories/exploreJax/exploreJaxGradientRight.png);
    background-repeat: repeat-y;
    background-size: 150%;
    background-position: right;
    z-index: 1;
}

.explore-box-image-title {
    display: none;
}

.explore-box-image {
    width: 100%;
    min-height: 270px;
    object-fit: cover;
    max-width: 100%;
}

.explore-box-icon {
    position: absolute !important;
    top: 50%;
    left: 40%;
    width: 40%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.explore-box-reversed .explore-box-icon {
    left: 60%;
}

.explore-box-text-container {
    position: relative;
    z-index: 2;
    width: 650px;
    max-width: calc(100% - 350px);
    margin-left: -150px;
    order: 2;
}

.explore-box-title {
    text-transform: uppercase;
    font-size: 1.4em;
    color: white;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px #011e36;
    padding-top: 5px;
}

.explore-box-title-link {
    text-decoration: none;
    color: white;
}

.explore-box-info-container {
    background-color: white;
    position: relative;
    margin-top: 10px;
    border-top: solid #80bcff 5px;
    padding: 25px;
    padding-right: 50px;
    height: 190px;
    padding-bottom: 0px;
    font-size: 0.9em;
    color: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-sizing: unset;
    order: 2;
}

.explore-box-desc {
    max-height: 116px;
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.explore-box-arrow-link {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 55px;
    height: 75px;
    background-image: url(/Content/Images/categories/exploreJax/ExploreJaxListArrow.gif);
    background-repeat: no-repeat;
    background-position: right;
    cursor: pointer;
}

.explore-box-reversed .explore-box-image-container {
    order: 2;
}

.explore-box-reversed .explore-box-image-gradient {
    background-image: url(/Content/Images/categories/exploreJax/exploreJaxGradientLeft.png);
    right: unset;
    left: 0;
    background-position: left;
}

.explore-box-reversed .explore-box-text-container {
    order: 1;
    margin-left: 0;
    margin-right: -150px;
}

@media screen and (max-width: 920px) {
    .explore-box-text-container {
        margin-left: -100px;
    }

    .explore-box-reversed .explore-box-text-container {
        margin-right: -100px;
    }
}

@media screen and (max-width: 830px) {
    .explore-box {
        flex-direction: column;
    }

    .explore-box-image-container {
        max-width: 100%;
        order: 1;
    }

    .explore-box-image-gradient {
        background-image: none !important;
    }

    .explore-box-icon, .explore-box-reversed .explore-box-icon {
        left: 50%;
        top: 40%;
        width: 30%;
        min-width: 109px;
    }

    .explore-box-image-title {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        background-image: url(/Content/Images/categories/exploreJax/exploreJaxGradientLeft.png);
        background-repeat: repeat-y;
        background-position: left;
        padding-bottom: 10px;
        padding-top: 10px;
        background-size: 350%;
        text-transform: uppercase;
        font-size: 1.4em;
        color: white;
        text-align: center;
        font-weight: 600;
        text-shadow: 1px 1px #011e36;
        text-decoration: none;
    }

    .explore-box-text-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        order: 2 !important;
    }

    .explore-box-title {
        display: none;
    }

    .explore-box-info-container {
        margin-top: 0;
    }
}

@media screen and (max-width: 680px) {
    .explore-links {
        padding-bottom: 10px;
        column-gap: 30px;
    }

    .explore-link {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 520px) {
    .explore-link-long-old {
        display: none;
    }

    .explore-link-long {
        display: block;
    }
}

@media screen and (max-width: 400px) {
    .explore-links {
        max-width: 80px;
    }
}

