/**
 * Gallery
 */

 .gallery-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: center;
 }

 .gallery-item-wrap {
     padding: 0;
     margin-bottom: 0;
     width: 50%;
 }

 .gallery-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: relative;
    width: 100%;
    height: 180px;
}

    .gallery-item .gallery-item-link {
        display: block;
        height: 100%;
        width: 100%;
    }


    .gallery-item .gallery-item-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(6, 121, 188, 0);
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

        .gallery-item:hover .gallery-item-overlay {
            background-color: rgba(32, 153, 157, 0.7);
            opacity: 1;
        }

    .gallery-item .gallery-item-inner-wrap {
        position: relative;
        z-index: 10;
        display: flex;
        height: 100%;
        width: 100%;
        text-align: center;
    }

        .gallery-item .gallery-item-inner-wrap .gallery-item-inner {
            display: flex;
            justify-content: center;
            align-content: center;
            width: 100%;
        }

            .gallery-item .gallery-item-inner-wrap .gallery-item-icon.image {
                display: none;
            }

@media(min-width: 768px)
{
    .gallery-item-wrap {
        padding: 0 1%;
        margin-bottom: 20px;
        width: 18%;
    }

    .gallery-item {
        height: 220px;
    }
}



/* Horse Tracker List */

.horsetracker-list-wrapper {
    width: 100%;
}

.horsetracker-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.horsetracker-grid.col-3 .horsetracker-griditem {
    width: 100%;
    margin-bottom: 30px;
}


@media(min-width: 768px)
{
    .horsetracker-grid.col-3 .horsetracker-griditem {
        width: 29.33%;
        margin: 0 2% 30px 2%;
    }
}

.horsetracker-griditem {
    width: 100%;
}

.horsetracker-item .horsetracker-box {
    text-align: center;
}
    .horsetracker-box a {
        color: #333;
    }

    .horsetracker-box a:hover {
        text-decoration: none;
        color: #333;
    }

        .horsetracker-box a:hover .horsetracker-box-img {
            opacity: 0.7;
        }

    .horsetracker-box .horsetracker-box-img {
        text-align: center;
        border-radius: 99%;
    }

        .horsetracker-box .horsetracker-box-img img {
            border-radius: 99%;
        }

    .horsetracker-box .horsetracker-box-detail .horsetracker-name {
        font-weight: 700;
        font-family: "Playfair Display",Helvetica,Arial,sans-serif;
        font-size: 22px;
        line-height: 28px;
    }

    .horsetracker-box .horsetracker-box-detail .horsetracker-date-of {
        font-size: 14px;
        line-height: 14px;
        margin-top: 10px;
    }


@media(min-width: 768px)
{
    .horsetracker-box .horsetracker-box-detail .horsetracker-name {
        font-size: 28px;
        line-height: 34px;
    }

    .horsetracker-box .horsetracker-box-detail .horsetracker-date-of {
        font-size: 18px;
        line-height: 18px;
    }
}

