.tab-container__wrapper .tab-container__title {
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}
.tab-container__wrapper .tab-container__title strong {
  font-weight: 700;
}
.tab-container__wrapper .tab-container__content .tab-widget__tabs-nav {
  display: flex;
  gap: 120px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .tab-container__wrapper .tab-container__content .tab-widget__tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}
.tab-container__wrapper .tab-container__content .tab-widget__tabs-nav--bordered {
  border-bottom: 1px solid #FFE1BE;
}
.tab-container__wrapper .tab-container__content .tab-widget__tab-nav[role=tab] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-bottom: 1px solid #ececec;
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  background: #fff;
  border-bottom: 3px solid #fff;
  cursor: pointer;
}
.tab-container__wrapper .tab-container__content .tab-widget__tab-nav[role=tab].active, .tab-container__wrapper .tab-container__content .tab-widget__tab-nav[role=tab][aria-selected=true] {
  color: #FF9A26;
  border-bottom: 3px solid #FF9A26;
  font-weight: 700;
}
.tab-container__wrapper .tab-container__content .tab-widget__tabs {
  width: 100%;
}
.tab-container__wrapper .tab-container__content .tab-widget__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
}
.tab-container__wrapper .tab-container__content .tab-widget__item.active {
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

.tab-container-landing .container {
  max-width: 1570px;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .tab-container-landing .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}

.tab-widget__tab-nav {
  background: none;
}

.tab-widget__tab-nav:focus:not(:focus-visible) {
  outline: none;
}

.tab-widget__tab-nav:focus-visible {
  outline: none;
}
