.venue-container{
    padding: 50px 0;
    overflow: hidden;
    background-color: #222;
}

.venue-heading{
    color: #16D2E1;
    text-align: center;
    margin-bottom: 40px;
}

.venue-content-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.map-body{
    width: 100%;
}

.venue-map{
    width: 100%;
    height: 100%;
}

.venue-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.venue-image-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.venue-img{
    height: 100%;
    width: 100%;
}

.venue-designation{
    color: #fff;
}

.venue-sub-heading{
    margin-bottom: 10px;
    color: #16D2E1;
}

.venue-text{
    margin-bottom: 0;
    font-size: 17px;
}

@media (max-device-width: 992px) {
    .venue-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .venue-map{
        height: 400px;
    }
}

@media (max-device-width: 576px) {
    .venue-image-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .venue-img{
        max-height: 250px;
    }
}