*
{
    box-sizing: border-box;
}

body
{
    margin: 0;

    background: #080808;

    color: white;

    font-family: Arial, sans-serif;
}

.hero
{
    position: relative;

    height: 75vh;

    background-image:
        url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?q=80&w=1800&auto=format&fit=crop');

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

.overlay
{
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        );
}

.hero-content
{
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    height: 100%;

    padding: 60px;

    max-width: 850px;
}

.small
{
    color: #d4a017;

    text-transform: uppercase;

    letter-spacing: 5px;

    font-size: 13px;
}

h1
{
    font-size: 82px;

    margin: 18px 0;
}

.desc
{
    font-size: 20px;

    color: rgba(255,255,255,0.75);

    line-height: 1.8;

    max-width: 700px;
}

.galleries
{
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(340px, 1fr));

    gap: 25px;

    padding: 60px;
}

.card
{
    position: relative;

    overflow: hidden;

    min-height: 460px;

    border-radius: 28px;

    background: #111;

    text-decoration: none;

    color: white;
}

.card img
{
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

.card:hover img
{
    transform: scale(1.04);
}

.gradient
{
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.95),
            rgba(0,0,0,0.15)
        );
}

.card-content
{
    position: absolute;

    bottom: 0;

    z-index: 3;

    padding: 35px;
}

.card-content h2
{
    margin: 0;

    font-size: 42px;
}

.card-content p
{
    margin-top: 12px;

    color: rgba(255,255,255,0.7);

    font-size: 16px;
}

.empty
{
    padding: 80px;

    text-align: center;

    color: rgba(255,255,255,0.5);

    font-size: 22px;
}

@media (max-width: 768px)
{
    h1
    {
        font-size: 54px;
    }

    .hero-content
    {
        padding: 35px;
    }

    .galleries
    {
        padding: 25px;
    }

    .card
    {
        min-height: 360px;
    }

    .card-content h2
    {
        font-size: 34px;
    }
}