/*
    VENUE STYLES
*/
.images-with-content{
    position: relative;
    overflow: hidden;
}
.images-with-content__content{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    z-index: 1;
}
.images-with-content__images{
    position: absolute;
    top:0;
    right:0;
    width: 42.7777%; /* 5/12 */
    padding: 0 0 0 20px;
    /* min-height: 100%; Change */
}
.images-with-content__images-single{
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/******************************/
/*    Sticky Image - TEMPLATE    */
/******************************/
.images-with-content.sticky_image .images-with-content__content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.images-with-content.sticky_image .images-with-content__text {
    padding-right: 20px;
}
.images-with-content.sticky_image .swiper-container {
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.images-with-content.sticky_image.image-left .images-with-content__images { 
    right: unset;
    left: 0;
    padding: 0 20px 0 0;
}
.images-with-content.sticky_image.image-left .images-with-content__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .images-with-content.sticky_image {
        padding: 0 10px;
    }
    .images-with-content.sticky_image .images-with-content__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .images-with-content.sticky_image .images-with-content__text,
    .images-with-content.sticky_image .images-with-content__images {
        width: 100%;
        padding: 0;
    }

    .images-with-content.sticky_image .images-with-content__images {
        display: none;
    }

    .images-with-content.sticky_image .images-with-content__images-single {
        background-size: contain !important;
    }
}


/******************************/
/*    Inside Row with Background - TEMPLATE    */
/******************************/
.images-with-content-inside_row_with_background {
    padding: 24px;
}

.images-with-content-inside_row_with_background .images-with-content__content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.images-with-content-inside_row_with_background .images-with-content__text,
.images-with-content-inside_row_with_background .images-with-content__images {
    width: 50%;
}

.images-with-content-inside_row_with_background .images-with-content__images {
    position: static;
    padding-left: 20px;
}

.images-with-content-inside_row_with_background .images-with-content__images-single {
    position: static;
    margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
    .images-with-content-inside_row_with_background {
        padding: 16px;
    }

    .images-with-content-inside_row_with_background .images-with-content__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .images-with-content-inside_row_with_background .images-with-content__text,
    .images-with-content-inside_row_with_background .images-with-content__images {
        width: 100%;
    }

    .images-with-content-inside_row_with_background .images-with-content__text {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .images-with-content-inside_row_with_background .images-with-content__images {
        padding-left: 0;
        margin-bottom: 20px;
        height: 170px;
        overflow: hidden;
    }

    .images-with-content-inside_row_with_background .images-with-content__images-single {
        margin-bottom: 16px;
        background-size: contain !important;
    }
}


/******************************/
/*    Map Container - TEMPLATE    */
/******************************/
.images-with-content-map_description {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1064px;    
    display: -webkit-box;    
    display: -ms-flexbox;    
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: none;
}

.images-with-content-map_description .images-with-content__inner-container {
    position: absolute;
    width: 404px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: auto;
}

.images-with-content-map_description .images-with-content__content {
    width: 100%;
    display: block;
    padding: 15px;
}

.images-with-content-map_description .images-with-content__images {
    position: static;
    height: 216px;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
}

.images-with-content-map_description .images-with-content__images-single{
    position: static;
}

.images-with-content-map_description .images-with-content__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: static;
}

.images-with-content-map_description .images-with-content__text h3 {
    font-size: 18px; 
    line-height: 24px; 
    font-weight: bold; 
    text-transform: uppercase;
    padding-bottom: 6px; 
    border-bottom: 1px solid #dadada; 
    margin-bottom: 6px;
    color: inherit;
}

.images-with-content-map_description .images-with-content__text p {
    font-size: 16px; 
    line-height: 20px;
    font-weight: 300;
    color: inherit;
}

.images-with-content-map_description .images-with-content__text p,
.images-with-content-map_description .images-with-content__text h4,
.images-with-content-map_description .images-with-content__text .vc_wp_text .textwidget,
.images-with-content-map_description .images-with-content__text .wpb_content_element,
.images-with-content-map_description .images-with-content__text .widget_text {
    margin: 0;
}

.images-with-content-map_description .images-with-content__text .vc_wp_text .textwidget {
    margin-top: 8px;
}

@media only screen and (max-width: 1100px) {
    .images-with-content-map_description {
        width: 900px;
    }
}

@media only screen and (max-width: 1000px) {
    .images-with-content-map_description {
        width: 768px;
    }
}

@media only screen and (max-width: 767px) {
    .images-with-content-map_description {
        width: 100%;
        background: #f1f1f1;
        left: 0;
        right: 0;
        position: relative;
    }

    .images-with-content-map_description .images-with-content__inner-container {
        position: relative;
        width: calc(100% - 40px);
        margin: 20px;
    }

    .images-with-content-map_description .images-with-content__text h3 {
        line-height: 20px; 
    }

    .images-with-content-map_description .images-with-content__text p {
        font-size: 14px; 
    }
}


/******************************/
/*    My team page - TEMPLATE    */
/******************************/

@media only screen and (max-width: 767px) {
    .images-with-content-map_description.images-with-content-map_team_page { 
        position: absolute;
        background-color: transparent;
    }

    .images-with-content-map_description.images-with-content-map_team_page .images-with-content__inner-container { 
        position: absolute;
        left: 0;
        right: 0;
        bottom: initial;
        margin: auto;
        width: 404px;
        align-items: flex-start;
        padding-top: 30px;
    }
}
@media only screen and (max-width: 460px) {
    .images-with-content-map_description.images-with-content-map_team_page .images-with-content__inner-container { 
        width: 300px;
    }
}