.venue-container{
    background-color: #232323;
    padding: 50px 0;
    min-height: 300px;
    overflow: hidden;
    color: #fff;
}

.venue-heading{
    text-align: center;
    margin-bottom: 0px;
    background: linear-gradient(90deg, rgba(130,187,49,1) 0%, rgba(224,221,12,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.venue-content-container{
    width: 95%;
    max-width: 1600px;
    padding: 20px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 50px;
}

.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: #fff;
}

.venue-text{
    margin-bottom: 0;
    text-align: left;
    color: #fff;
}

.venue-img-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 3px;
}

.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: 100%;
}


@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;
    }
}