.tabbed_content * {
    box-sizing: border-box;
}

.tabbed_content strong {
    font-weight: 800;
}

.tabbed_content {
    background-color: #f9f9f9;
    padding-top: 60px;
    padding-bottom: 80px;
}

.tabbed_content h2 {
    font-size: 32px;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    color: #263c87;
    line-height: 40px;
    margin-bottom: 16px;
    margin-top: 40px;
    text-align: center;
    position: relative;
}

.tabbed_content h2:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #c2c2c2;
    position: absolute;
    top: 50%;
    left: 0px;
    z-index: 0;
}

.tabbed_content h2 span {
    display: inline-block;
    background-color: #f9f9f9;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.tabbed_content .content_wrapper {
    text-align: center;
}
.tabbed_content .content_wrapper p {
    color: #2b303c;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}

.tabbed_content .tabs_wrapper {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 60px;
    gap: 5%;
}

.tabbed_content .tabs {
    flex: 0 0 35%;
    list-style: none;
}

.tabbed_content .tabs li {
    margin-bottom: 8px;
}

.tabbed_content .tabs a.tc_tabs_tab_item_link {
    display: block;
    color: #fff;
    background-color: #c2c2c2;
    padding: 18px 32px;
    width: 100%;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    font-family: 'Inter', sans-serif;
    transition: background-color .3s ease;
}

.tabbed_content .tabs a.tc_tabs_tab_item_link.active-tab-item {
    background: #263c87 url('img/arrow.png') 95% center no-repeat;
}

.tabbed_content .tabs a.tc_tabs_tab_item_link:hover {
    background-color: #00aeef;
}

.tabbed_content .tab_contents {
    flex: 0 0 60%;
}

.tabbed_content .tc-tabs-content-item {
    display: none;
}

.tabbed_content .tc-tabs-content-item.active-tab-item {
    display: block;
}

.tabbed_content .tc-tabs-content-item p {
    color: #1f293d;
    font: 18px/27px 'Inter', sans-serif;
}
.tabbed_content .tc-tabs-content-item a {
    color: #263c87;
    text-decoration: underline;
}
.tabbed_content .tc-tabs-content-item a:hover {
    text-decoration: none;
}

.tabbed_content .tc-tabs-content-item img {
    max-width: 100%;
    height: auto;
}

.tabbed_content .tc-tabs-content-item .more_link {
    color: #00aeef;
    font: 600 18px 'Inter', san-serif;
    text-decoration: none;
    background: url('img/arrow-blue.png') right center no-repeat;
    padding-right: 24px;
}

@media (max-width: 767px) {
    .tabbed_content .tabs_wrapper {
        flex-direction: column;
        padding: 15px;
    }
}
