.imgbox-large {
    position: relative;
    box-sizing: border-box;
    border-top: 12px solid white;
    z-index: 10;

    height: 460px;

	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.imgbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.imgbox-large:hover .imgbox-overlay { opacity: 0.2; }

.imgbox-large .imgbox-title {
    position: absolute;
    width: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.imgbox-large .imgbox-title h3 {
    font-family: "Museo Sans W01_900", Arial, Helvetica;
    font-size: 40px;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
}

.imgbox-large .imgbox-title .subtitle {
    font-family:'MuseoSansW01-500Italic';
    color: white;
    display: block;
    font-size: 26px;
    margin-bottom: 20px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
}

.imgbox-large .imgbox-link {
    display: inline-block;
    border: 3px solid white;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);

}


.imgbox-large .link-inner {
    position: relative;
    padding: 15px 30px;
    overflow: hidden;
    z-index: 10;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
}

.imgbox-large .link-inner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    transition: transform 0.3s;
    transform: translateY(-100%);
    z-index: -1;
}

.imgbox-large:hover .imgbox-link { color: black; }

.imgbox-large:hover .link-inner .overlay { transform: translateY(0); }

.odd .imgbox-large { border-right: 6px solid white; }
.even .imgbox-large { border-left: 6px solid white; }

@media (max-width: 1024px) {
	.imgbox-grid-cont { margin-bottom: 20px; }

    .imgbox-large { height: 240px; }
    .imgbox-large .imgbox-title h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .imgbox-large .imgbox-title .subtitle {
        font-size: 16px;
        line-height: 18px;
    }
    .imgbox-large .link-inner {
        padding: 8px 16px;
        font-size: 14px;
    }
    .imgbox-large .imgbox-title { width: 100%; }
}

@media (max-width: 641px) {
    .imgbox-large { width: 100%; }
    .imgbox-large .imgbox-title h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .odd .imgbox-large { border-right: 0; }
    .even .imgbox-large { border-left: 0; }
}
