.tabContent__text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #1a475f;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    grid-column: 2 / span 1;
    grid-row: 4 / span 3;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    position: relative;
    width: 100%;
    z-index: 2;
}
.tabContent__icon {
    height: 60px;
    position: absolute;
    right: 30px;
    top: 15px;
    width: 60px;
}
.tabContent__icon>img, .tabContent__icon>svg {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}
.eyebrow {
    color: #dc6f1f;
    display: block;
    margin-bottom: 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.tabContent__text .eyebrow {
    -webkit-animation: fadeInUp 1s ease-out;
    animation: fadeInUp 1s ease-out;
    border-bottom: 5px solid #fff;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}
.tabContent__inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: grid;
    grid-template-columns: 40px auto 40px;
    grid-template-rows: repeat(6,-webkit-max-content);
    grid-template-rows: repeat(6, max-content);
}
.tabContent__message {
    -webkit-animation: fadeInUp2 1s ease-out;
    animation: fadeInUp2 1s ease-out;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 30px;
    padding-right: 0;
    position: relative;
}
.tabContent__media {
    grid-column: 1 / span 3;
    grid-row: 1 / span 4;
    height: 40vh;
    width: 100%;
}
.tabContent__image {
    -webkit-animation: fadeInLeft 1.2s ease-in-out;
    animation: fadeInLeft 1.2s ease-in-out;
    position: relative;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: opacity 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
    transition: opacity 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
    width: 100%;
}
.nav-underline .nav-link {
    color: var(--bs-nav-underline-link-active-color);
    font-weight: 700;
        border-bottom: 3px solid transparent;
}
.nav-underline .nav-link.active, .nav-underline .show>.nav-link {
    border-bottom-color: rgb(249 187 3);
}
@media screen and (min-width: 992px) {
    .tabContent__media {
        grid-column: 3 / span 6;
        grid-row: 1 / span 3;
        height: 520px;
    }
    .tabContent__inner {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: 40px auto 40px;
    }
    .tabContent__text {
        grid-column: 1 / span 4;
        grid-row: 2 / span 2;
        min-height: 440px;
        padding: 45px;
    }
    .tabContent__icon {
        height: 85px;
        right: 5%;
        top: 15px;
        width: 85px;
    }
}
@media screen and (min-width: 1024px) {
    .tabContent__text .eyebrow {
        font-size: 24px;
        padding-bottom: 18px;
    }
    .tabContent__icon {
        top: 30px;
    }
    .tabContent__message {
        margin-bottom: 50px;
        font-size: 30px;
    }
}
.tabContent.-greenAccent .eyebrow {
    border-color: #70b347;
}