/* homepage */

section.homepage {
    background-color: white;
    padding-block-end: 50px;
}

.bsr-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 1200px;
    padding-inline: 20px;
    width: 100%;
}

@media (min-width:768px) {
    .bsr-grid {
        gap: 20px 40px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1098px) {
    .bsr-grid {
        gap: 30px 60px;
    }
}

.bsr-grid .item {
    background: white;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1.8;
    text-align: center;
    text-transform: uppercase;
}

.bsr-grid .item a {
    align-items: center;
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
}

.bsr-grid .item img {
    height: auto;
    max-width: 100%;
}

.bsr-grid .item a h2 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
    border: 3px solid white;
    font-family: "proxima-nova-extra-condensed";
    font-size: 25px;
    font-weight: 300;
    min-width: 130px;
    padding: 3px 40px 0;
    position: absolute;
}

.bsr-grid .item a:hover h2,
.bsr-grid .item a:focus h2
{
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
}



.bsr-grid .item .item-text {
    padding: 0 20px;
}


.bsr-grid .content, .bsr-content {
	padding: 30px 0;
	text-align: center;
	font-family: 'Raleway', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}
