@-webkit-keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.nav-tabs {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav-tabs-item {
  margin: 0;
  display: inline-block;
}
.nav-tabs-item a {
  position: relative;
  text-decoration: none;
}
.nav-tabs-item a [data-title]:before {
  content: attr(data-title);
  display: block;
  height: 0;
  font-weight: 700;
  overflow: hidden;
  visibility: hidden;
}
.nav-tabs-item a.active {
  font-weight: 700;
  color: #003079;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .tab-pane.active {
  display: block;
}
.tab-content > .tab-pane.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.prefers-reduced-motion .tab-content > .tab-pane.fade {
  -webkit-transition: none;
  transition: none;
}
.tab-content > .tab-pane.fade:not(.show) {
  opacity: 0;
}

@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.tab--horizontal {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  margin: 40px 0;
}
.tab--horizontal .nav-tabs {
  background: transparent;
  border-bottom: 1px solid #CF7F00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
@media (max-width: 767.98px) {
  .tab--horizontal .nav-tabs {
    border: none;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, calc(50% - 5px));
    grid-template-rows: auto;
  }
}
.tab--horizontal .nav-tabs-item {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.tab--horizontal .nav-tabs-item:first-child {
  border-left: none;
}
.tab--horizontal .nav-tabs-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 10px 20px;
  color: #808E9B;
  font-size: 24px;
  white-space: nowrap;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .tab--horizontal .nav-tabs-item a {
    border: 1px solid #808E9B;
    font-size: 16px;
    padding: 10px;
    white-space: normal;
  }
}
.tab--horizontal .nav-tabs-item a:after {
  content: "";
  position: absolute;
  height: 0;
  background: #cccccc;
  left: -1px;
  right: -1px;
  bottom: 0;
}
.tab--horizontal .nav-tabs-item a.active {
  border-color: #CF7F00;
  color: #383838;
}
.tab--horizontal .nav-tabs-item a.active:after {
  height: 5px;
  background: #CF7F00;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .tab--horizontal .nav-tabs-item a.active {
    background-color: #003079;
    border-color: #003079;
    color: #fff;
  }
  .tab--horizontal .nav-tabs-item a.active:after {
    display: none;
  }
}
.tab--horizontal .split-content {
  padding: 0;
}
.tab--horizontal .split-content .image-video {
  padding-bottom: 0;
}

.tabs-group-title {
  color: #003A96;
}

@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.tab--vertical {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
}
@media (max-width: 767.98px) {
  .tab--vertical {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
.tab--vertical .nav-tabs {
  background: #f2f2f2;
  border-right: 1px solid #cccccc;
  height: 100%;
}
.tab--vertical .nav-tabs-item {
  display: block;
}
.tab--vertical .nav-tabs-item a {
  color: #000;
  padding: 10px 30px;
  position: relative;
  text-decoration: none;
  display: block;
}
.tab--vertical .nav-tabs-item a.active {
  background-color: #e6e6e6;
}
.tab--vertical .nav-tabs-item a.active:after {
  content: "";
  position: absolute;
  width: 5px;
  background: #003079;
  top: 0;
  right: 0;
  bottom: 0;
}