.venue-wrapper {
    padding: 100px 50px;
    position: relative;
    z-index: 0;

    img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }

    .row {
        z-index: 2;
        position: relative;
    }

    h2 {

        margin-bottom: 20px;


        &:nth-child(1) {
            font-size: 24px;
            font-weight: 500;
            color: #fff;
        }

        &:nth-child(2) {
            font-size: 30px;
            font-weight: 600;
            color: #fdb54f;
        }

        &:nth-child(3) {
            font-size: 34px;
            font-weight: 800;
            color: #fdb54f;
        }
    }

    p {
        margin-bottom: 25px;
        font-size: 18px;
        color: #fff;
    }

    a {
        font-size: 32px;
        color: #fdb54f;
        font-weight: 600;
    }
}

.venue-light-box div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    justify-items: center;
    align-items: center;
}

@media(max-width:767px) {
    .venue-wrapper {
        padding: 50px 25px;


        h2 {
            font-size: 25px;
        }

        a {
            font-size: 20px;
        }
    }
}