.venue-Banner {
    position: relative;
    overflow: hidden;

    .overlay {
        position: absolute;
        inset: 0;
        background-color: #54595F6E;
        opacity: .5;
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        z-index: 1;
    }

    img {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .venue-content {
        padding-inline: 15px;
        width: 100%;
        max-width: 980px;
        margin: 50px auto;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    h2 {
        background: none;
        margin: 0;

        a {
            color: #fff;
        }


    }

    .scnd-h2 {
        font-size: clamp(1.5625rem, 1.3352rem + 1.1364vw, 2.1875rem);
    }

    span {
        display: flex;
        margin: 0 auto;
        width: 16%;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 5px;

        svg {
            color: #078243;
            font-size: 20px;
        }

        &::before {
            content: "";
            display: block;
            flex-grow: 1;
            border-block-start: 6px dotted #fff;
        }

        &::after {
            content: "";
            display: block;
            flex-grow: 1;
            border-block-end: 6px dotted #fff;
        }
    }

    .white-bg-p {
        font-family: "Barlow", Sans-serif;
        font-size: 18px;
        font-weight: 500;
        background-color: #FFFFFFA6;
        padding: 15px 15px 15px 15px;
        color: var(--primay-color);

        p {
            margin-bottom: 10px;
        }

        a {
            color: #c36;

            &:hover {
                color: var(--primay-color);
            }
        }
    }
}