.imagebox-grid {}
.imagebox-grid [class*="block-grid-"] > li { padding: 0 0.925em 1.25em; }

.imagebox-grid .title {
    font-family:'Helvetica Neue LT W01_71488914', Arial, Helvetica, sans-serif;
    width: 100%;
    line-height: 1;
    text-align: center;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}
.imagebox-grid .item {
    position: relative;
    padding: 0;
    box-shadow:0px 0px 40px rgba(35,35,35,.32);
    transform: scale(1);
    transition: transform ease .35s;
}
.imagebox-grid .item:hover { transform: scale(1.1); }

.imagebox-grid .item .title-text {
    position: absolute;
    top: 50%;
    left: 0px;
	max-width: 80%;
    background-color: #fff;
    font-family: 'Helvetica Neue LT W01_71488914', Arial, Helvetica, sans-serif;
    font-size: 23px;
    letter-spacing: -0.03em;
    color: #1d1d1d;
    padding: 8px 10px;
    transform: translate(0px, -50%) scale(1);
    transform-origin: left;
    transition: transform ease .35s;
}

.imagebox-grid .item:hover .title-text { transform: translate(-1px, -50%) scale(.9091); }

.imagebox-grid .item .title-text:after {
    content: '\f178';
    position: absolute;
    right: 0;
    display: block;
    font-family: 'FontAwesome';
    top: 48%;
    left: 100%;
    width: 15px;
    height: 15px;
    color: #fff;
    opacity: 0;
    transform: translate(0px, -50%);
    transition: transform ease .35s, opacity ease .35s;
}

.imagebox-grid .item:hover .title-text:after {
    opacity: 1;
    transform: translate(10px, -50%);
}

.imagebox-grid .item .imgcont {
	position: relative;
	display: block;
	padding-bottom: 100%;
	width: 100%;
	height: 0;
	overflow: hidden;
}
.imagebox-grid .item .imgcont.rectangle {
    padding-bottom: 60%;
}

.imagebox-grid .item .imgcont img {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	transform: translate(-50%, -50%);
}

.imagebox-grid .item .imgcont:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all ease .35s;
}

.imagebox-grid .item:hover .imgcont:after { opacity: 0.4; }

@media only screen and (max-width: 640px) {
    /*.imagebox-grid .item .imgcont { padding-bottom: 53.57142%; }*/
    .imagebox-grid .title { display: none; }
}

@media only screen and (min-width: 641px) and (max-width: 1024px) {
    .imagebox-grid .title {
		font-size: 120px;
		font-size: calc(100px + (120 - 100) * ((100vw - 641px) / (1024 - 641)));
	}
}

@media only screen and (min-width: 1025px) {
    .imagebox-grid .title {
        font-size: 197px;
		font-size: calc(165px + (197 - 165) * ((100vw - 1025px) / (2560 - 1025)));
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 2560px) {
	.imagebox-grid .title { font-size: 197px; }
}
