.tab {
    position: relative;
    border-radius: 1.2rem;
    box-shadow: 0 8px 16px 0 rgba(28, 50, 84, 0.07);
    padding: 1.5rem 2rem;
    cursor: pointer;
    margin-bottom: 3rem;
}
.tab__secondary {
    background: #f8f8f8;
    margin-bottom: 1rem;
}
.tab__title {
    margin: 0;
}
.tab__title:hover {
    color: #9ade19;
}
.tab__header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.tab__header__regular a {
    text-decoration: underline;
    color: #03274f;
}
.tab__header__regular a:hover {
    color: #8ac716;
}
.tab__title {
    flex: 1 0 50%;
    font-size: 1.6rem;
}
.tab__text {
    margin-left: auto;
    margin-bottom: 10px;
    margin-top: 15px;
    cursor: pointer;
}
.tab__body {
    display: none;
    overflow: hidden;
    transition: visibility 0s, opacity 0.5s linear;
}
.tab__body__inner {
    font-family: "Fira Sans";
    padding-top: 1.5rem;
}
.tab__body__inner a {
    text-decoration: underline;
    color: #03274f;
}
.tab__body__inner a:hover {
    color: #8ac716;
}
.tab__arrow {
    position: relative;
    width: 1.4rem;
    margin-left: 6px;
}
.tab__arrow:before, .tab__arrow:after {
    content: "";
    position: absolute;
    width: 1.4rem;
    height: 2px;
    background: #9ade19;
    right: 8px;
}
.tab__arrow:before {
    transform: rotate(90deg);
    transition: all 350ms;
}
.tab__arrow-active:before {
    transform: rotate(0deg);
}
.tab .tab__body__inner a.linkitem {
    color: inherit;
    text-decoration: none;
}

.tab-toggle {
    display: block;
    position: relative;
    padding: 0;
    min-width: 30px;
    min-height: 30px;
}