.bg-light-blue {
    background: #EDF6FF !important;
}
.bg-blue, .bg-blue *:not(.button) {
    color: #fff !important;
}


.text-image-teaser-section {
    padding: 80px 0;
}
.text-image-teaser-wrapper {
    display: flex;
    align-items: center;
}
.text-image-teaser-wrapper.row-reverse {
    flex-direction: row-reverse;
}
.text-image-teaser-wrapper .image {
    position: relative;
    flex: 0 0 auto;
    width: 62%;
}
.text-image-teaser-wrapper .image > img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.text-image-teaser-wrapper .image .logo {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.text-image-teaser-wrapper .text-content-wrapper {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}
.text-image-teaser-wrapper .text-content-wrapper .headline {
    font-family: Titillium Web !important;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    margin: 0;
    color: #004F94;
}
.text-image-teaser-wrapper .text-content-wrapper .text {
    font-family: Titillium Web;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #003366;
}
.text-image-teaser-wrapper .text-content-wrapper .button {
    font-family: Titillium Web;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    text-transform: none;
    padding: 14px 29px;
    letter-spacing: 0;
    color: #003366;
    background: #FFCC00;
}
.bg-yellow .text-content-wrapper .button {
    color: #fff;
    background: #004F94;
}
.text-image-teaser-wrapper .text-content-wrapper .button:focus,
.text-image-teaser-wrapper .text-content-wrapper .button:hover {
    background-color: #14679e;
    color: #fefefe;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
    .text-image-teaser-wrapper .image {
        width: 55%;
    }
}

@media only screen and (max-width: 991px) {
    .text-image-teaser-section {
        padding: 40px 0;
    }
    .text-image-teaser-wrapper .text-content-wrapper {
        padding: 20px;
        gap: 15px;
    }
    .text-image-teaser-wrapper {
        flex-direction: column-reverse !important;
    }
    .text-image-teaser-wrapper .text-content-wrapper .headline {
        font-size: 25px;
        line-height: 30px;
    }
    .text-image-teaser-wrapper .text-content-wrapper .text {
        font-size: 18px;
        line-height: 24px;
    }
    .text-image-teaser-wrapper .text-content-wrapper .button {
        font-size: 18px;
        line-height: 24px;
        padding: 9px 19px;
    }
    .text-image-teaser-wrapper .image {
        width: 100%;
    }
    .text-image-teaser-wrapper .image > img {
        max-height: 213px;
    }
    .text-image-teaser-wrapper .image .logo {
        left: 10px;
    }
    .text-image-teaser-wrapper .image .logo img {
        max-width: 150px;
    }
}