.module_stage_with_tabs {
    background: linear-gradient(to right, #003254, #005E9E);
    padding: 50px 25px 110px 25px;
}

.module_stage_with_tabs > .container {
    padding: 0;
}

.module_stage_with_tabs .topline {
    font-size: 15px;
    line-height: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: italic;
    color: #cce6f4;
    margin-bottom: 10px;
}

.module_stage_with_tabs .header .headline,
.module_stage_with_tabs .header .theme-fg {
    color: #fff;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 25px;
}

.module_stage_with_tabs .bodytext {
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
}

.module_stage_with_tabs .tabs_wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.module_stage_with_tabs .tab_label {
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.module_stage_with_tabs .tab_label:hover {
    background-color: #fff;

}

.module_stage_with_tabs .tab_label:hover a {
    color: #003254;
}

.module_stage_with_tabs .tab_label a {
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-decoration: none;
    padding: 15px 21px;
}

.module_stage_with_tabs .tab_content {
    position: relative;
    background-color: #CCE6F4;
    padding: 25px 15px;
    margin: 10px 0;
    border-radius: 5px;
    display: none;
    flex-direction: column-reverse;
}

.module_stage_with_tabs .tab_content.active {
    display: flex;
}

.module_stage_with_tabs .tab_content:before, .module_stage_with_tabs .tab_content:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 75px;
    border: 11px solid transparent;
    border-bottom-color: #CCE6F4;
}

.module_stage_with_tabs .tab_content:after {
    left: 75px;
    border: 10px solid transparent;
    border-bottom-color: #CCE6F4;
}


.module_stage_with_tabs .tab_content .header {
    order: 1;
}

.module_stage_with_tabs .tab_content .header .theme-fg, 
.module_stage_with_tabs .tab_content .header .headline, 
.module_stage_with_tabs .tab_content .bodytext {
    color: #003254;
}

.module_stage_with_tabs .tab_content .image {
    width: 100%;
    aspect-ratio: 16/9;
}

.module_stage_with_tabs .tab_content .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 16/9;
}

.module_stage_with_tabs + .module_banner_in_between {
    bottom: -60px;
    background-color: transparent;
}

@media only screen and (min-width: 768px) {
    .module_stage_with_tabs {
        padding: 50px 25px 200px 25px;
    }

    .module_stage_with_tabs .topline {
        font-size: 21px;
        line-height: 30px;
    }

    .module_stage_with_tabs .bodytext {
        font-size: 18px;
        line-height: 24px;
    }

    .module_stage_with_tabs .tab_label a {
        font-size: 15px;
        line-height: 20px;
    }

    .module_stage_with_tabs + .module_banner_in_between {
        bottom: 80px;
    }
}

@media only screen and (min-width: 991px) {
    .module_stage_with_tabs + .module_banner_in_between {
        bottom: 40px;
    }
}

@media only screen and (min-width: 1199px) {

    .module_stage_with_tabs .tab_content {
        flex-direction: row;
        gap: 85px;
        padding: 45px 15px 50px 15px;
    }

    .module_stage_with_tabs .tab_content .image {
        flex: 0 50%;
        margin-left: -65px;
    }

    .module_stage_with_tabs .tab_content .tab_text {
        flex: 0 50%;
    }

    .module_stage_with_tabs .tab_content:before, .module_stage_with_tabs .tab_content:after {
        left: 645px;

    }

    .module_stage_with_tabs .tab_content:after {
        left: 645px;
    }
}

@media only screen and (min-width: 1200px) {
    .module_stage_with_tabs .left_column {
        margin-bottom: 120px;
        max-width: 470px;
        margin-right: 125px;
    }

    .module_stage_with_tabs + .module_banner_in_between {
        bottom: 0;
    }
}

body.theme-darkblue .module_stage_with_tabs.frame-space-before-extra-small {
    padding-top: -1px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-before-small {
    padding-top: 7px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-before-medium {
    padding-top: 23px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-before-large,
body.theme-darkblue .module_stage_with_tabs.frame-space-before-extra-large {
    padding-top: 55px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-after-extra-small {
    padding-bottom: -1px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-after-small {
    padding-bottom: 7px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-after-medium {
    padding-bottom: 23px;
}

body.theme-darkblue .module_stage_with_tabs.frame-space-after-large,
body.theme-darkblue .module_stage_with_tabs.frame-space-after-extra-large {
    padding-bottom: 55px;
}