.tpage__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .tpage__container {
    padding: 0 20px;
  }
}

.block__transparency {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .block__transparency {
    padding-bottom: 60px;
  }
}

.tr-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .tr-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.tr-head__title {
  flex: 1 0 0;
  min-width: 0;
  font-family: "Fixel Display", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.8px;
  color: #04083a;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .tr-head__title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 480px) {
  .tr-head__title {
    font-size: 22px;
  }
}

.tr-head__all {
  flex-shrink: 0;
  font-family: "Fixel Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #eb7a1b;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}
.tr-head__all:active {
  opacity: 0.75;
}
@media screen and (min-width: 1025px) {
  .tr-head__all:hover {
    opacity: 0.75;
  }
}

.tr-intro {
  max-width: 820px;
  margin-bottom: 24px;
}

.tr-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .tr-layout {
    flex-direction: column;
    gap: 20px;
  }
}

.tr-years {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
  border: none;
  border-left: 1px solid #a7ccee;
  flex-shrink: 0;
  width: 322px;
}
@media screen and (max-width: 900px) {
  .tr-years {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    border-left: none;
    border-bottom: 1px solid #a7ccee;
    padding-bottom: 16px;
  }
}

.tr-years__label {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #0b70cf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tr-years__label:active {
  color: rgb(8.8, 89.6, 165.6);
}
@media screen and (min-width: 1025px) {
  .tr-years__label:hover {
    color: rgb(8.8, 89.6, 165.6);
  }
}
.tr-years__label {
  display: block;
  width: 100%;
  padding: 4px 0 4px 16px;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .tr-years__label {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .tr-years__label {
    font-size: 16px;
  }
}

.tr-years__item {
  display: block;
  width: 100%;
  margin-left: -1px;
  padding: 4px 8px 4px 16px;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #04083a;
  text-align: left;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s, background-color 0.15s;
}
.tr-years__item:active {
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .tr-years__item:hover {
    opacity: 1;
  }
}
.tr-years__item.is-active {
  opacity: 1;
  background: #ffe3cb;
  border-left-color: #eb7a1b;
}
@media screen and (max-width: 900px) {
  .tr-years__item {
    margin-left: 0;
    padding: 6px 14px;
    border-left: none;
    border: 1px solid #a7ccee;
    border-radius: 999px;
    background: #fff;
  }
  .tr-years__item.is-active {
    border-color: #eb7a1b;
    background: #ffe3cb;
  }
}

.tr-main {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .tr-main {
    width: 100%;
  }
}

.tr-tabs {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .tr-tabs {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .tr-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 360px) {
  .tr-tabs {
    grid-template-columns: 1fr;
  }
}

.tr-tab {
  flex: 1 0 0;
  min-width: 0;
  padding: 16px 32px;
  border: 1px solid #a7ccee;
  border-radius: 4px;
  background: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.4px;
  text-align: center;
  color: #0b70cf;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.tr-tab:active {
  border-color: rgba(235, 122, 27, 0.32);
  color: #eb7a1b;
}
@media screen and (min-width: 1025px) {
  .tr-tab:hover {
    border-color: rgba(235, 122, 27, 0.32);
    color: #eb7a1b;
  }
}
.tr-tab.is-active {
  background: rgba(235, 122, 27, 0.08);
  border-color: rgba(235, 122, 27, 0.32);
  color: #eb7a1b;
}
@media screen and (max-width: 1200px) {
  .tr-tab {
    padding: 14px 16px;
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .tr-tab {
    padding: 12px 10px;
    font-size: 16px;
  }
}

.tr-card {
  background: #fff;
  border: 1px solid #a7ccee;
  border-radius: 4px;
  padding: 32px;
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  .tr-card {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .tr-card {
    padding: 16px;
  }
}

.tr-docs {
  list-style: disc;
  margin: 0;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tr-docs[hidden] {
  display: none;
}
@media screen and (max-width: 768px) {
  .tr-docs {
    padding-left: 22px;
    gap: 16px;
  }
}

.tr-docs + .tr-docs:not([hidden]) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .tr-docs + .tr-docs:not([hidden]) {
    margin-top: 24px;
  }
}

.tr-docs__year {
  list-style: none;
  margin-left: -30px;
  font-family: "Fixel Display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #04083a;
}
.tr-docs__year[hidden] {
  display: none;
}
@media screen and (max-width: 768px) {
  .tr-docs__year {
    margin-left: -22px;
    font-size: 20px;
  }
}

.tr-docs__item {
  color: #0b70cf;
}
.tr-docs__item[hidden] {
  display: none;
}

.tr-docs__link {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #0b70cf;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}
.tr-docs__link:active {
  opacity: 0.75;
}
@media screen and (min-width: 1025px) {
  .tr-docs__link:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 768px) {
  .tr-docs__link {
    font-size: 16px;
    line-height: 26px;
  }
}

.tr-empty {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #7a7d98;
  margin: 0;
  padding: 24px 0;
}
.tr-empty--inline {
  padding: 0;
}
