.venue-container {
    padding: 50px 0 70px;
    overflow: hidden;
}

.venue-head-text {
    text-align: center;
    padding-bottom: 35px;
    color: #D2D918;
    font-size: 35px;
}

.venue-sub-container {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 35px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
}

.venue-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.venue-img-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 3px;
}

.venue-img {
    width: 100%;
    height: 100%;
}

.venue-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 25px;
}

.venue-head {
    font-size: 18px;
    font-weight: 600 !important;
    margin-bottom: 0;
    color: #D2D918;
}

.venue-text {
    color: #fff;
    margin-bottom: 0;
}

@media screen and (max-device-width: 992px){
    .venue-sub-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-device-width: 576px){
    .venue-img-container{
        grid-template-columns: repeat(1, 1fr);
    }
}