.venue-container{
    background: radial-gradient(92.82% 30.9% at -2.2% 106.86%, rgb(132,251,221, 0.2) 0%, rgba(132,251,221, 0) 100%), radial-gradient(78.38% 42.35% at 104.98% 47.14%, rgb(132,251,221, 0.2) 0%, rgba(132,251,221, 0) 100%) #efefef;
    padding: 50px 0;
    min-height: 300px;
    overflow: hidden;
    color: #000;
}

.venue-heading{
    text-align: center;
    margin-bottom: 0px;
}

.venue-content-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 30px;
}

.venue-map-container{
    width: 100%;
    height: 100%;
}

.venue-map{
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.venue-address-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.venue-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 25px;
}

.venue-head{
    font-size: 20px;
    font-weight: 600 !important;
    margin-bottom: 0;
    color: #000;
}

.venue-text{
    margin-bottom: 0;
    text-align: left;
    color: #000;
}

.venue-img-container {
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr); */
    width: 100%;
    gap: 3px;
    display: flex;
    /* width: 50%; */
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.venue-img-1{
    grid-column: 1/2;
}
.venue-img-2{
    grid-column: 2/3;
}
/* .venue-img-3{
    grid-column: 2/4;
    grid-row: 3/4;
    max-height: 300px;
} */
/* .venue-img-4{
    grid-column: 3/4;
    grid-row: 3/4;
} */
/* 
.venue-img-5{
    grid-column: 4/5;
    grid-row: 3/5;
    background-color: black;
} */

.venue-img {
    /* width: 100%; */
    /* height: auto; */
    /* min-height: 100%; */
    width: 50%;
    height: 100%;
    object-fit: cover;
}


@media screen and (max-width: 768px) {
    .venue-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

/*@media screen and (max-width: 576px) {*/
/*    .venue-img-container{*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*    }*/
/*}*/