/**
 * Property Sites Showcase
 */
.projects {
    margin: 2em 2em;
    display: grid;
    grid-gap: 1em;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .projects {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .projects {
        grid-template-columns: repeat(1, 1fr);
    }
}

.projects .item-bg {
    line-height: 1;

    will-change: transform;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.projects .item-bg:hover {
    transform: scale(1.1);
}
.projects .item-bg:hover .item-info {
    opacity: 1;
}

.projects .item-bg img {
    width: 100%;
    height: auto;
}

.item-content {
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.05);
}
.item-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}
.item-content a {
    color: #0652dd;
    text-decoration: none;
}
.item-content a:hover {
    color: #1b1464;
    text-decoration: underline;
}
.item-content p.has-small-font-size {
    white-space: nowrap;
}

.item-info span {
    color: #ffffff;
    font-size: 0.9em;
    padding-top: 5px;
    text-align: center;
}
.item-info span a {
    background: none;
    background-color: transparent;
    color: #ffffff;
}
.item-info span small {
    display: inline-block;
    margin-bottom: 24px;
}
