.guests-container {
    display: flex;
    flex-direction: column;
    background-color: #f3f3ec;
    align-items: center;
}

.landing-img-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.header-img-container {
    overflow: hidden;
    margin: 5%;
}

.header-car-img {
    width: 100%;
    aspect-ratio: 3 / 3;
    object-fit: cover;
    object-position: 68%;
}

.white-blue-img {
    width: 75%;
    position: absolute;
    bottom: 3%;
}

.apply-link {
    width: 40%;
}

.buy-tickets-img {
    position: absolute;
    width: 40%;
    bottom: 5%;
    border-bottom: 2px solid #1e4387;
    padding-bottom: 1%;
    /* Zoom grows downward (origin top); no shadow — it's an image. */
    transform-origin: top center;
    transition: transform .4s ease-out;
}

.apply-link:hover .buy-tickets-img {
    transform: scale(1.12);
}

.date-img {
    width: 100%;
}

.block-img {
    width: 100%;
    padding: 10%;
}

.block-container {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.tree-container {
    display: flex;
    justify-content: center;
}

.buy-tree-img {
    width: 80%;
    margin: 5% 0%;
}

@media (min-width: 577px) {
    .header-img-container {
        margin: 2%;
    }

    .header-car-img {
        aspect-ratio: 2989 / 1360;
    }

    .white-blue-img {
        width: 35%;
    }

    .apply-link {
        width: 20%;
    }

    .buy-tickets-img {
        width: 20%;
        bottom: 3%;
    }

    .block-container {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        justify-items: center;
        align-items: center;
    }

    .block-img {
        padding: 8%;
    }

    .buy-tree-img {
        width: 50%;
        margin: 5% 0%;
    }
}