.venue-container {
    padding: 50px 0;
    background-color: #EBECF0;
    overflow: hidden;
}

.venue-head-text {
    text-align: center;
    padding-bottom: 30px;
    font-weight: 600;
    color: #2181C4;
}

.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-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: 24px;
    font-weight: 600 !important;
    margin-bottom: 0;
    color: #2181C4;
}

.venue-text {
    margin-bottom: 0;
}

.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 {
    width: 100%;
    height: 100%;
}

@media (max-device-width: 768px) {
    .venue-sub-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-device-width: 576px) {
    .venue-img-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}