@font-face {
  font-family: gramatika-light;
  src: url(/assets/fonts/GRAMATIKA-LIGHT.TTF);
}

@font-face {
  font-family: gramatika-medium;
  src: url(/assets/fonts/GRAMATIKA-MEDIUM.TTF);
}

@font-face {
  font-family: gramatika-bold;
  src: url(/assets/fonts/GRAMATIKA-BOLD.TTF);
}

@font-face {
  font-family: gramatika-black;
  src: url(/assets/fonts/GRAMATIKA-BLACK.TTF);
}

.docs-content {
  width: 100%;
}

.docs-content a {
  display: inline-block;
  font-weight: 800;
  color: #FF9345;
  text-decoration: none;
}

.docs-content a::after {
  content: '';
  display: block;
  width: 110%;
  height: 3px;
  margin-top: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  border-radius: 100px;
}

.docs-content a:visited {
  color: #FF9345;
}

.docs-content img {
  width: 100%;
  height: auto;
}

.docs-content p {
  font-weight: 500;
  margin-bottom: 20px;
}

.docs-content b, .docs-content strong {
  color: #FF9345;
  font-family: gramatika-bold;
}

.docs-content ol, .docs-content ul {
  margin-left: 18px;
}

.docs-content h1 {
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
}

.docs-content h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.docs-content h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}

.docs-content h4, .docs-content h5, .docs-content h6 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
}

.docs-content video {
  width: 100%;
  height: auto;
}

.docs-section {
  margin-bottom: 40px;
}

.grid {
  position: relative;
  width: 1300px;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  display: none !important;
}

.section {
  margin-bottom: 130px;
}

.gradient {
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

button {
  display: block;
  font-size: 20px;
  font-family: gramatika-bold;
  color: #071F3D;
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  border-radius: 10px;
  padding: 17px 90px 24px 90px;
  margin-bottom: 50px;
  outline: none;
  border: none;
  cursor: pointer;
}

button div {
  pointer-events: none;
  text-shadow: 0 3px 8px rgba(7, 31, 61, 0.3);
}

.button--medium {
  font-size: 18px;
  padding: 14px 85px 21px 85px;
}

.button--small {
  font-size: 16px;
  padding: 10px 80px 17px 80px;
}

.section-title {
  display: inline-block;
  font-size: 42px;
  margin-bottom: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-out {
  -webkit-animation: fadeOut 300ms cubic-bezier(0.13, 0.67, 0.27, 0.89) forwards;
          animation: fadeOut 300ms cubic-bezier(0.13, 0.67, 0.27, 0.89) forwards;
}

.fade-in {
  -webkit-animation: fadeIn 300ms cubic-bezier(0.73, 0.12, 0.07, 0.92) forwards;
          animation: fadeIn 300ms cubic-bezier(0.73, 0.12, 0.07, 0.92) forwards;
}

header {
  padding-top: 20px;
  margin-bottom: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .site-logo {
  width: 150px;
  height: auto;
}

header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .menu-linker {
  font-size: 18px;
  font-family: gramatika-medium;
  margin: 0 15px;
  padding: 15px;
  text-decoration: none;
  color: white;
}

header .menu-linker:after {
  content: "";
  display: block;
  margin-top: 7px;
  height: 3px;
  width: 0%;
  -webkit-transition: width 300ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  transition: width 300ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  border-radius: 10px;
}

header .menu-linker:hover:after {
  width: 120%;
}

header .menu-linker:visited {
  color: white !important;
}

body {
  width: 100vw;
  font-family: gramatika-bold;
  color: white;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.scrollbar-track-y {
  background-color: rgba(7, 31, 61, 0.5) !important;
  border-radius: 100px;
}

.scrollbar-thumb-y {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF9345), to(#FFD645)) !important;
  background: linear-gradient(180deg, #FF9345, #FFD645) !important;
}

.background {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background: linear-gradient(150deg, #071F3D, #0A121C);
}

.leader-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 250px;
}

.leader-section .leader-title {
  text-align: center;
  font-size: 72px;
  width: 1000px;
  max-width: 100%;
}

.leader-section .leader-subtitle {
  font-family: gramatika-medium;
  font-size: 32px;
  margin-bottom: 60px;
}

.triangle-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 280px;
  z-index: -1;
}

.left-triangle-box {
  position: relative;
  width: 350px;
  height: 250px;
}

.left-triangle-box .triangle-decorator:nth-of-type(1) {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  left: 0;
  top: 0;
}

.left-triangle-box .triangle-decorator:nth-of-type(2) {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  right: 0;
  top: 40px;
}

.left-triangle-box .triangle-decorator:nth-of-type(3) {
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
  left: 40%;
  bottom: 0;
}

.right-triangle-box {
  position: relative;
  width: 350px;
  height: 320px;
}

.right-triangle-box .triangle-decorator:nth-of-type(1) {
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
  left: 0;
  top: 40%;
}

.right-triangle-box .triangle-decorator:nth-of-type(2) {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  right: 40px;
  top: 0;
}

.right-triangle-box .triangle-decorator:nth-of-type(3) {
  -webkit-transform: rotate(130deg);
          transform: rotate(130deg);
  right: 0;
  bottom: 0;
}

.triangle-decorator {
  position: absolute;
  width: 75px;
  height: auto;
}

.reading-guide-section .docs-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 80vh;
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px 0 30px;
}

.reading-guide-section .reading-guide-filter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.reading-guide-section .reading-guide-filter {
  font-size: 16px;
  font-family: gramatika-medium;
  margin: 0 10px;
  padding: 6px 18px 12px 18px;
  border-radius: 8px;
  color: #071F3D;
  cursor: pointer;
  -webkit-transition: all 300ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  transition: all 300ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.reading-guide-section .reading-guide-filter--active {
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.reading-guide-section .custom-scroll-box {
  width: 100%;
}

.reading-guide-section .custom-scroll-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0) 30px, white 80px);
  pointer-events: none;
}

.reading-guide-section .reading-guide-content {
  width: 750px;
  margin: auto;
  padding-top: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #0A121C;
}

.reading-guide-section .reading-guide-content p {
  margin: auto;
  font-size: 18px;
  font-family: gramatika-medium;
  margin-bottom: 20px;
}

.reading-guide-section .reading-guide-content .header {
  font-size: 28px;
}

.proof-of-outcomes-intro {
  width: 100%;
  margin-bottom: 80px;
}

.learning-outcomes-proof-box {
  width: 100%;
  margin-bottom: 50px;
}

.learning-outcomes-proof-box .top-bar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: gramatika-medium;
  margin-bottom: 20px;
}

.learning-outcomes-proof-box .top-bar .index-number {
  margin-right: 20px;
  font-size: 24px;
  text-align: center;
  width: 20px;
}

.learning-outcomes-proof-box .top-bar .learning-outcome-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.learning-outcomes-proof-box .top-bar .learning-outcome-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  margin-top: 10px;
}

.learning-outcomes-proof-box .outcome-explanation-text {
  margin-left: 40px;
  margin-bottom: 20px;
  font-family: gramatika-medium;
  max-width: 100%;
}

.learning-outcomes-proof-box .linked-deliverables-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
}

.learning-outcomes-proof-box .linked-deliverables-box .deliverable {
  min-width: 135px;
  max-width: 200px;
  height: 90px;
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-radius: 8px;
  margin-right: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  text-decoration: none;
}

.learning-outcomes-proof-box .linked-deliverables-box .deliverable .deliverable-header-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.learning-outcomes-proof-box .linked-deliverables-box .deliverable .deliverable-header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.learning-outcomes-proof-box .linked-deliverables-box .deliverable .deliverable-header-image .black-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0A121C;
  opacity: 0.5;
}

.learning-outcomes-proof-box .linked-deliverables-box .deliverable .deliverable-title-label {
  font-size: 12px;
  padding: 3px 13px 5px 13px;
  border-radius: 4px;
  background-color: white;
  color: #071F3D;
}

.outcomes-overview {
  margin-bottom: 200px;
}

.outcomes-overview .section-title {
  display: block;
  background: none;
  -webkit-text-fill-color: white;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.outcomes-overview .competence-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

.outcomes-overview .competence-filters .filter {
  border-radius: 8px;
  border: 2px solid white;
  padding: 6px 20px 10px 20px;
  margin: 10px;
  font-family: Gramatika-Medium, sans-serif;
  -webkit-transition-property: background, border-color, color;
  transition-property: background, border-color, color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.13, 0.67, 0.27, 0.89);
          transition-timing-function: cubic-bezier(0.13, 0.67, 0.27, 0.89);
  cursor: pointer;
}

.outcomes-overview .competence-filters .filter--active {
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  border-color: #071F3D;
  color: #071F3D;
}

@media (max-width: 440px) {
  .outcomes-overview .competence-filters .filter {
    margin: 5px;
  }
}

.outcomes-overview .filter-descriptions {
  width: 700px;
  max-width: 100%;
  margin: 0 auto 100px auto;
}

.outcomes-overview .filter-descriptions .filter-description {
  width: 100%;
  font-size: 18px;
  font-family: gramatika-light;
}

.outcomes-overview .competence-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.outcomes-overview .competence-box {
  width: 100%;
  border-radius: 8px;
  font-family: Gramatika-Medium, sans-serif;
  overflow: hidden;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  transition: -webkit-transform 400ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  transition: transform 400ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
  transition: transform 400ms cubic-bezier(0.13, 0.67, 0.27, 0.89), -webkit-transform 400ms cubic-bezier(0.13, 0.67, 0.27, 0.89);
}

.outcomes-overview .competence-box a {
  text-decoration: none;
}

.outcomes-overview .competence-box:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.outcomes-overview .competence-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: white;
}

.outcomes-overview .competence-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.outcomes-overview .competence-label {
  display: inline-block;
  border-radius: 4px;
  background-color: white;
  color: #071F3D;
  font-size: 11px;
  padding: 3px 8px 6px 8px;
  margin-bottom: 10px;
  margin-right: 5px;
}

.outcomes-overview .competence-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 200px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  padding: 20px;
}

.outcomes-overview .competence-title {
  font-size: 22px;
  color: #071F3D;
  margin-bottom: 20px;
}

.outcomes-overview .competence-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: #071F3D;
}

.outcomes-overview .competence-link svg {
  margin-top: 3px;
  margin-left: 5px;
}

@media (max-width: 1500px) {
  .outcomes-overview .competence-list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .outcomes-overview .competence-list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .outcomes-overview .competence-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.deliverable-documentation {
  width: 780px;
  margin-bottom: 200px;
  color: white !important;
  font-family: gramatika-light;
}

.deliverable-documentation .deliverable-title {
  width: 100%;
  padding: 20px 40px 30px 40px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9345), to(#FFD645));
  background: linear-gradient(90deg, #FF9345, #FFD645);
  color: #071F3D;
  font-family: gramatika-bold;
  font-size: 38px;
  margin-bottom: 45px;
  border-radius: 8px;
}
