.venue-wrapper {
    position: relative;
    z-index: 0;

    .venue-wrapper-inner {
        position: relative;
        z-index: 1;
        padding-block: 7% 20%;


        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #7A7A7AB0;
            opacity: .5;
            transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
            z-index: 0;
        }
    }

    img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -1;

    }


    .banner-content-wrapper {
        position: relative;
        z-index: 1;
        margin: 0 auto;
        width: 90%;
        max-width: 968px;
        text-align: center;

    }

    span {
        background-color: #FFFFFFA3;
        border-radius: 15px 15px 15px 15px;
        display: block;
        position: relative;
        margin-bottom: 50px;
    }

    h2 {
        color: var(--primary-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-color: transparent;
        background-image: linear-gradient(180deg, var(--primary-color) 0%, var(--secondry-color) 100%);
        font-family: "Barlow", Sans-serif;
        font-size: clamp(1.5625rem, 0.6534rem + 4.5455vw, 4.0625rem);
        font-weight: 600;
        line-height: 1.6;

    }

    p {
        margin-bottom: 25px;
        font-size: clamp(1.125rem, 0.8977rem + 1.1364vw, 1.75rem);
        color: #fff;
    }

    a {

        color: #c36;

        &:hover {
            color: #336;

        }
    }

    .venue-light-box div {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        justify-items: center;
        align-items: center;
    }