*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p,
dl,
ul,
ol,
label {
  margin: 0;
}

button {
  cursor: pointer;
}
button:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

html {
  height: auto;
  scroll-behavior: smooth;
}

body {
  height: auto;
  overflow-x: hidden;
}

@media (max-width: 1199px) {
  .hide-in-mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .only-mobile {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 2559px) {
  .hide-in-desktop {
    display: none;
  }
}
@media (min-width: 2560px) {
  .hide-in-4k {
    display: none;
  }
}
.aisuite-wrapper {
  background: #080742;
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.aisuite-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, rgba(94, 114, 235, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(21, 210, 173, 0.06) 0%, transparent 40%), linear-gradient(180deg, #080742 0%, #00001C 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
}

.aisuite-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #15D2AD;
  margin-bottom: 36px;
  padding: 8px 20px;
  border: 1px solid rgba(21, 210, 173, 0.2);
  border-radius: 100px;
  background: rgba(21, 210, 173, 0.06);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #15D2AD;
  animation: aisuiteDotPulse 2.5s ease-in-out infinite;
}

@keyframes aisuiteDotPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.aisuite-hero__headline {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-gradient-text {
  font-style: normal;
  background: linear-gradient(135deg, #15D2AD, #63F8F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aisuite-hero__subtitle {
  font-family: "Lato", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto 40px;
}

.aisuite-hero__boards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}

.hero-board-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}
.hero-board-logo img {
  max-height: 52px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.hero-board-logo:hover {
  color: rgba(255, 255, 255, 0.9);
}
.hero-board-logo:hover img {
  opacity: 1;
}

.aisuite-hero__values {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 32px;
}

.hero-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-value-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(94, 114, 235, 0.08);
  border: 1px solid rgba(94, 114, 235, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
}

.hero-value h4 {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.hero-grid {
  position: absolute;
  inset: -60%;
  background-image: linear-gradient(rgba(94, 114, 235, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(94, 114, 235, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: 50% 50%;
  animation: aisuiteGridScroll 6s linear infinite, aisuiteGridPulse 6s ease-in-out infinite;
}

@keyframes aisuiteGridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 64px;
  }
}
@keyframes aisuiteGridPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.hero-orb--primary {
  width: 400px;
  height: 400px;
  background: rgba(94, 114, 235, 0.4);
  left: 15%;
  top: 25%;
}
.hero-orb--secondary {
  width: 280px;
  height: 280px;
  background: rgba(21, 210, 173, 0.25);
  right: 18%;
  top: 45%;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint span {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  animation: aisuiteScrollDraw 2s ease-in-out infinite;
}

@keyframes aisuiteScrollDraw {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  50% {
    clip-path: inset(0 0 0% 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}
.aisuite-trust {
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.trust-logo {
  width: 88px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.trust-logo:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.trust-logo img {
  max-width: 60px;
  max-height: 28px;
  object-fit: contain;
  opacity: 0.3;
  transition: opacity 0.2s;
}
.trust-logo:hover img {
  opacity: 0.6;
}

.aisuite-why {
  padding: 80px 24px;
  background: linear-gradient(180deg, #00001C, #080742);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #15D2AD;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  margin: 0 auto;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 16px;
}

.value-row-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-row-item h3 {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.value-row-item p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.35);
}

.value-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(94, 114, 235, 0.08);
  border: 1px solid rgba(94, 114, 235, 0.06);
  flex-shrink: 0;
  margin-top: 2px;
}

.board-nav-static {
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.board-nav {
  position: fixed;
  top: var(--board-nav-top, 80px);
  left: 0;
  right: 0;
  z-index: 105;
  padding: 0 24px;
  background: rgba(8, 7, 66, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.board-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.board-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.board-tab {
  padding: 16px 24px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.board-tab:hover {
  color: rgba(255, 255, 255, 0.75);
}
.board-tab:focus-visible {
  outline: 2px solid #15D2AD;
  outline-offset: 2px;
}
.board-tab.active {
  color: #15D2AD;
}
.board-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: #15D2AD;
  border-radius: 1.5px;
}

.board-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.board-section:last-of-type {
  border-bottom: none;
}

.board-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
}

.board-logo-wrap {
  flex-shrink: 0;
  width: 120px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
}
.board-logo-wrap img {
  max-height: 100px;
  max-width: 120px;
  object-fit: contain;
}

.board-accent-line {
  width: 28px;
  height: 2px;
  border-radius: 1px;
  margin-bottom: 12px;
  background: var(--board-accent, #5E72EB);
}

.board-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.board-info p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
}

.course-grid {
  display: grid;
  gap: 16px;
}
.course-grid[data-count="1"] {
  grid-template-columns: 1fr;
}
.course-grid[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.course-grid[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.course-grid[data-count="4"] {
  grid-template-columns: repeat(2, 1fr);
}
.course-grid[data-count="5"] {
  grid-template-columns: repeat(3, 1fr);
}
.course-grid[data-count="6"] {
  grid-template-columns: repeat(3, 1fr);
}
.course-grid[data-count="7"] {
  grid-template-columns: repeat(3, 1fr);
}
.course-grid[data-count="8"] {
  grid-template-columns: repeat(3, 1fr);
}
.course-grid[data-count="9"] {
  grid-template-columns: repeat(3, 1fr);
}
.course-grid[data-count="10+"] {
  grid-template-columns: 1fr;
  gap: 8px;
}

.course-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 28px 24px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s ease-out;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--board-accent, #5E72EB), transparent 80%);
}
.course-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.course-card:focus-visible {
  outline: 2px solid #15D2AD;
  outline-offset: 2px;
}
.course-card h4 {
  font-family: "Raleway", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}
.course-card.no-events .card-date {
  color: rgba(255, 255, 255, 0.2);
}
.course-card.no-events .card-date strong {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.course-card-featured {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s ease-out;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.course-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, var(--board-accent, #5E72EB), transparent 80%);
}
.course-card-featured:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.course-card-featured:focus-visible {
  outline: 2px solid #15D2AD;
  outline-offset: 2px;
}
.course-card-featured h4 {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}
.course-card-featured .card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
  max-width: 520px;
}

.card-featured-meta {
  text-align: right;
  flex-shrink: 0;
}
.card-featured-meta .card-date {
  font-size: 13px;
  margin-bottom: 12px;
}
.card-featured-meta .card-arrow {
  margin-left: auto;
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.course-card-compact {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  position: relative;
}
.course-card-compact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 36%;
  border-radius: 0 2px 2px 0;
  background: var(--board-accent, #5E72EB);
}
.course-card-compact:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.course-card-compact:focus-visible {
  outline: 2px solid #15D2AD;
  outline-offset: 2px;
}
.course-card-compact h4 {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.course-card-compact .card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-compact-info {
  min-width: 0;
}

.card-compact-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.card-compact-meta .card-date {
  font-size: 12px;
  white-space: nowrap;
}
.card-compact-meta .card-arrow {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.card-body-with-logo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.card-title-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 6px;
}

.card-body-text {
  flex: 1;
  min-width: 0;
}
.card-body-text h4 {
  font-family: "Raleway", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body-text .card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-logo-name {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--board-accent, #5E72EB);
}

.card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: auto;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.card-meta--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.card-meta-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
}
.card-meta-item strong {
  color: #15D2AD;
  font-weight: 600;
}

.card-meta-label {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.card-meta-sep {
  color: rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.card-price {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.card-price:empty {
  display: none;
}

.card-meta-item:empty,
.card-meta-sep:empty {
  display: none;
}

.card-footer:empty {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}

.card-arrow {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 6px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.course-card:hover .card-arrow, .course-card-featured:hover .card-arrow, .course-card-compact:hover .card-arrow {
  background: rgba(21, 210, 173, 0.08);
  border-color: rgba(21, 210, 173, 0.15);
  color: #15D2AD;
}

.card-featured-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.card-featured-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 200px;
}

.card-compact-meta .card-meta-label {
  font-size: 10px;
}
.card-compact-meta .card-arrow {
  font-size: 11px;
  padding: 5px 12px;
}

.aisuite-empty {
  padding: 80px 24px;
  text-align: center;
}
.aisuite-empty p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.aisuite-cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, #080742, #00001C);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 114, 235, 0.06), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 600px) {
  .aisuite-hero {
    padding: 80px 16px 48px;
    min-height: 80vh;
  }
  .hero-content {
    max-width: 100%;
    padding: 0;
  }
  .aisuite-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 14px;
    gap: 6px;
  }
  .aisuite-hero__headline {
    font-size: clamp(28px, 8vw, 40px);
    word-break: break-word;
    margin-bottom: 20px;
  }
  .aisuite-hero__subtitle {
    font-size: 14px;
    padding: 0 8px;
  }
  .aisuite-hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .aisuite-hero__boards {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-board-logo img {
    max-height: 36px;
    max-width: 80px;
  }
  .aisuite-hero__values {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero-value h4 {
    font-size: 11px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .aisuite-trust {
    padding: 28px 16px;
  }
  .trust-logos {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .trust-logo {
    width: 72px;
    height: 40px;
  }
  .trust-logo img {
    max-width: 48px;
    max-height: 22px;
  }
  .aisuite-why {
    padding: 48px 16px;
  }
  .value-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .section-header p {
    font-size: 14px;
  }
  .board-nav-static,
  .board-nav {
    padding: 0 16px;
    position: relative;
  }
  .board-nav-static::after,
  .board-nav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, rgba(8, 7, 66, 0.95));
    pointer-events: none;
    z-index: 2;
  }
  .board-nav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }
  .board-nav-inner::-webkit-scrollbar {
    display: none;
  }
  .board-nav-title {
    font-size: 11px;
    margin-right: 8px;
  }
  .board-tab {
    font-size: 13px;
    padding: 12px 16px;
  }
  .board-section {
    padding: 32px 16px 40px;
  }
  .board-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .board-logo-wrap {
    width: 80px;
    min-width: 80px;
  }
  .board-logo-wrap img {
    max-height: 64px;
    max-width: 80px;
  }
  .board-info h3 {
    font-size: 20px;
  }
  .board-info p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .course-grid[data-count="2"], .course-grid[data-count="3"], .course-grid[data-count="4"], .course-grid[data-count="5"], .course-grid[data-count="6"], .course-grid[data-count="7"], .course-grid[data-count="8"], .course-grid[data-count="9"] {
    grid-template-columns: 1fr;
  }
  .course-card {
    padding: 20px 16px;
  }
  .card-body-with-logo {
    flex-direction: column;
    gap: 12px;
  }
  .card-title-logo {
    width: 56px;
    height: 56px;
  }
  .card-body-text h4 {
    font-size: 16px;
  }
  .card-body-text .card-desc {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
  .card-footer {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
  }
  .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
    min-width: 0;
  }
  .card-meta-sep {
    display: none;
  }
  .course-card-featured {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .card-featured-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-featured-meta {
    text-align: left;
  }
  .card-featured-meta .card-meta--vertical {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .card-featured-meta .card-arrow {
    margin-left: 0;
  }
  .course-card-compact {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 8px;
  }
  .card-compact-logo {
    display: none;
  }
  .card-compact-meta {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }
  .aisuite-cta {
    padding: 48px 16px;
  }
  .aisuite-cta h2 {
    font-size: 22px;
  }
  .aisuite-cta p {
    font-size: 14px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .aisuite-empty {
    padding: 48px 16px;
  }
}
@media (min-width: 768px) {
  .value-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .board-header {
    flex-direction: row;
    gap: 24px;
  }
  .course-grid[data-count="2"], .course-grid[data-count="3"], .course-grid[data-count="4"], .course-grid[data-count="5"], .course-grid[data-count="6"], .course-grid[data-count="7"], .course-grid[data-count="8"], .course-grid[data-count="9"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-card-featured {
    grid-template-columns: 1fr auto;
    gap: 32px;
  }
  .card-featured-inner {
    grid-template-columns: 1fr auto;
    gap: 32px;
  }
  .cta-buttons {
    flex-direction: row;
  }
  .aisuite-hero__ctas {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .board-nav-inner {
    padding: 14px 0;
  }
  .course-grid[data-count="3"], .course-grid[data-count="5"], .course-grid[data-count="6"], .course-grid[data-count="7"], .course-grid[data-count="8"], .course-grid[data-count="9"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .course-grid[data-count="3"], .course-grid[data-count="5"], .course-grid[data-count="6"], .course-grid[data-count="7"], .course-grid[data-count="8"], .course-grid[data-count="9"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .board-section {
    padding: 48px 24px 64px;
  }
  .value-row {
    gap: 40px;
  }
}
@media (min-width: 1920px) {
  .board-section {
    max-width: 1280px;
    padding: 56px 32px 72px;
  }
  .board-nav-inner {
    max-width: 1280px;
  }
  .aisuite-hero__content {
    max-width: 960px;
  }
  .aisuite-trust .trust-inner {
    max-width: 1280px;
  }
  .aisuite-why .why-inner {
    max-width: 1280px;
  }
  .aisuite-hero__eyebrow {
    font-size: 13px;
    letter-spacing: 4.5px;
  }
  .board-tab {
    font-size: 16px;
    padding: 18px 28px;
  }
  .board-info h3 {
    font-size: 30px;
  }
  .board-info p {
    font-size: 16px;
  }
  .card-body-text h4 {
    font-size: 21px;
  }
  .card-body-text .card-desc {
    font-size: 14px;
  }
  .card-meta-item {
    font-size: 13px;
  }
  .card-arrow {
    font-size: 13px;
    padding: 8px 16px;
  }
  .hero-value h4 {
    font-size: 14px;
  }
  .hero-value-icon {
    width: 30px;
    height: 30px;
  }
  .section-eyebrow {
    font-size: 12px;
  }
  .section-header p {
    font-size: 18px;
  }
}
@media (min-width: 2560px) {
  .board-section {
    max-width: 1280px;
    padding: 64px 40px 80px;
  }
  .board-nav-inner {
    max-width: 1280px;
  }
  .aisuite-hero__content {
    max-width: 1100px;
  }
  .aisuite-trust .trust-inner {
    max-width: 1280px;
  }
  .aisuite-why .why-inner {
    max-width: 1280px;
  }
  .aisuite-hero__eyebrow {
    font-size: 13px;
    letter-spacing: 5px;
  }
  .board-tab {
    font-size: 18px;
    padding: 20px 32px;
  }
  .board-info h3 {
    font-size: 34px;
  }
  .board-info p {
    font-size: 18px;
  }
  .card-body-text h4 {
    font-size: 24px;
  }
  .card-body-text .card-desc {
    font-size: 15px;
  }
  .card-meta-item {
    font-size: 14px;
  }
  .card-arrow {
    font-size: 14px;
    padding: 10px 20px;
  }
  .hero-value h4 {
    font-size: 16px;
  }
  .hero-value-icon {
    width: 34px;
    height: 34px;
  }
  .section-eyebrow {
    font-size: 14px;
  }
  .section-header h2 {
    font-size: 48px;
  }
  .section-header p {
    font-size: 20px;
  }
  .trust-logo {
    width: 110px;
    height: 60px;
  }
  .trust-logo img {
    max-width: 76px;
    max-height: 36px;
  }
  .aisuite-cta {
    padding: 120px 40px;
  }
  .aisuite-cta h2 {
    font-size: 48px;
  }
  .aisuite-cta p {
    font-size: 20px;
  }
  .course-grid[data-count="7"], .course-grid[data-count="8"], .course-grid[data-count="9"] {
    grid-template-columns: repeat(4, 1fr);
  }
}
html {
  overflow-x: hidden;
}

.d-none {
  display: none;
}

.invalid-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.invalid-icon svg > path {
  fill: rgb(225, 29, 72);
}

.error-arrow {
  display: inline-block;
  margin-right: 8px;
  line-height: 23px;
}

.error-arrow svg > path {
  fill: rgb(225, 29, 72);
}

#loading-spinner {
  position: absolute;
  right: 6px;
}

#loading-spinner > span {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 10px;
}

.title-area img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.board-section-title {
  font-style: normal;
  font-weight: 700 !important;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #080742;
  margin-right: 16px;
}

@media (min-width: 1200px) {
  .board-section-title {
    font-size: 24px;
    line-height: 32px;
    margin-right: 24px;
  }
  .title-area img {
    margin-right: 12px;
    width: 32px;
    height: 32px;
  }
  html {
    overflow-x: visible;
  }
}
@media (min-width: 2560px) {
  .title-area img {
    margin-right: 24px;
    width: 52px;
    height: 52px;
  }
  .board-section-title {
    font-size: 32px;
    line-height: 56px;
    margin-right: 32px;
  }
}
.tt-header {
  position: static;
}

.tt-page-header {
  position: relative;
  height: 796px;
  padding: 117px 15px 0;
  background-image: radial-gradient(59.97% 83.46% at 104.36% 19.01%, #25539b 0%, #18386c 27.3%, #10284f 71.13%);
  background-repeat: no-repeat;
  background-size: cover;
}
.tt-page-header__lines {
  display: none;
}
.tt-page-header__curved-img {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 12;
}
.tt-page-header__inner {
  z-index: 2;
  position: relative;
  color: #ffffff;
}
.tt-page-header__inner-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.tt-page-header__inner-bg-img {
  width: 100%;
  height: 767px;
}
.tt-page-header__inner-bg-img-b {
  width: 100%;
  height: 38px;
  margin-top: -4px;
  background: radial-gradient(12.97% 83.46% at 104.36% 19.01%, #25539b 0%, #18386c 27.3%, #10284f -25.87%);
  border: 0;
  outline: 0;
  vertical-align: unset;
}
.tt-page-header__inner-bg-lottie {
  display: none;
}
.tt-page-header__inner-mid {
  display: flex;
  flex-direction: column;
}
.tt-page-header__title {
  height: 107px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
.tt-page-header__title span {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
}
.tt-page-header__certificate-img {
  display: none;
}
.tt-page-header__desc {
  font-family: "Lato";
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.tt-page-header__course-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.tt-page-header__course-action > a {
  width: 120px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 59px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  outline: 0;
  transition: background 300ms, border-color 300ms;
}
.tt-page-header__course-action > a:hover,
.tt-page-header__course-action > a :active {
  background: #58c2ad;
  border-color: #58c2ad;
}
.tt-page-header__course-action time {
  display: inline-flex;
  align-items: center;
}
.tt-page-header__course-action time > span {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 10px;
  line-height: 24px;
  color: #fff;
  margin-right: 3.24px;
}
.tt-page-header__course-action time > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.tt-page-header__course-action time > a span {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-right: 2.24px;
}
.tt-page-header__course-action time > a svg {
  fill: #fff;
}
.tt-page-header__course-action time > a:hover {
  margin-left: 2.5px;
}
.tt-page-header__course-action time > a:hover span {
  color: #58c2ad;
}
.tt-page-header__course-action time > a:hover svg {
  fill: #58c2ad;
}
.tt-page-header__video-player {
  --width: 330px;
  --height: 186px;
  width: var(--width, 330px);
  height: var(--height, 186px);
  margin-top: 16px;
  /* Temp */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Temp */
}
.tt-page-header__video-player-inner {
  position: relative;
  display: flex;
  background: linear-gradient(to bottom, #fff 100%, #a1a1a1 100%);
  border: 1.5px inset transparent;
  border-radius: 4px;
}
.tt-page-header__video-player-inner iframe {
  width: var(--width, 330px);
  height: var(--height, 186px);
  border-radius: 4px;
}
.tt-page-header__video-player-inner .preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
}
.tt-page-header__video-player-inner .preview::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.425);
  cursor: pointer;
  border-radius: 4px;
}
.tt-page-header__video-player-inner .preview:hover::after {
  background: rgba(0, 0, 0, 0.525);
}
.tt-page-header__video-player-inner .preview:hover .play-circle {
  background: #58c2ad;
}
.tt-page-header__video-player-inner .preview img {
  width: var(--width, 330px);
  height: var(--height, 186px);
  object-fit: cover;
  border-radius: 4px;
}
.tt-page-header__video-player-inner .preview .play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #18386c;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 300ms;
}
.tt-page-header__video-player-inner .preview .play-circle:hover {
  background: #58c2ad;
}
.tt-page-header__video-player-inner .preview .play-circle svg {
  width: 36px;
  height: 36px;
  fill: white;
}
.tt-page-header__course-properties {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tt-page-header__course-properties > *:not(:last-child) {
  margin-right: 16px;
}
.tt-page-header__course-properties-item {
  display: inline-flex;
  align-items: center;
  color: #58c2ad;
  transition: color 200ms;
}
.tt-page-header__course-properties-item:hover {
  color: #00ebbd;
}
.tt-page-header__course-properties-item span {
  margin-left: 10px;
  font-family: "Lato";
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
}
.tt-page-header__cursor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.tt-header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  box-shadow: unset;
}
.tt-header-v2__inner {
  max-width: 1206px;
  padding: 15px 21px 15px 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tt-header-v2__inner > div.menu {
  display: none !important;
}
.tt-header-v2__navs {
  display: none;
}
.tt-header-v2:not(.homepage) .tt-header-v2__fixed {
  display: none;
}

.tt-header-v2 {
  border-radius: 0px 0px 2px 2px;
}
.tt-header-v2.headroom--not-top.headroom--unpinned {
  box-shadow: 0px 0px 12px rgba(161, 161, 161, 0.15);
}
.tt-header-v2 .header-menu-button .navbar-toggler {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tt-header-v2 .header-menu-button .navbar-toggler:focus {
  outline: 0;
}
.tt-header-v2 .header-menu-button .navbar-toggler svg {
  width: 18px;
  height: 18px;
}
.tt-header-v2 .header-menu-button .navbar-toggler svg g rect {
  fill: #25539b;
}
.tt-header-v2 .header-menu-button .navbar-shopping-cart {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #25539b;
  box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.1);
  margin-right: 12px;
  transition: background 300ms;
}
.tt-header-v2 .header-menu-button .navbar-shopping-cart:focus {
  outline: 0;
}
.tt-header-v2 .header-menu-button .navbar-shopping-cart:hover, .tt-header-v2 .header-menu-button .navbar-shopping-cart:active {
  background: #58c2ad;
}
.tt-header-v2 .header-menu-button .navbar-shopping-cart svg {
  width: 27.43px;
  height: 27.43px;
}
.tt-header-v2 .header-menu-button .navbar-shopping-cart svg g rect {
  fill: #ffffff;
}

@media (min-width: 992px) {
  .tt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s ease 0.02s;
    transition: all 0.3s ease 0.02s;
  }
  .tt-page-header {
    height: 950px;
    padding: 149px 15px 0;
  }
  .tt-page-header__lines {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .tt-page-header__lines > lottie-player {
    width: 100%;
    height: auto;
    position: relative;
    bottom: -36px;
  }
  .tt-page-header__inner {
    max-width: 1206px;
    margin: 0 auto;
  }
  .tt-page-header__inner-bg-img {
    height: 900px;
  }
  .tt-page-header__inner-bg-img-b {
    height: 51px;
    margin-top: -3px;
  }
  .tt-page-header__inner-bg-lottie {
    display: block;
    position: absolute;
    bottom: 100px;
    width: 100%;
    height: auto;
  }
  .tt-page-header__inner-bg-lottie-wrapper {
    width: 98.8vw;
    height: 545px;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    z-index: 2;
  }
  .tt-page-header__inner-bg-lottie-wrapper > div {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .tt-page-header__inner-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tt-page-header__inner-mid {
    flex-direction: row;
    margin-top: 54px;
  }
  .tt-page-header__inner-mid-left {
    margin-right: 36px;
  }
  .tt-page-header__title {
    font-size: 48px;
    line-height: 56px;
  }
  .tt-page-header__title span {
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
  }
  .tt-page-header__certificate-img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .tt-page-header__certificate-img-wrapper {
    width: 190px;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24.5221px;
  }
  .tt-page-header__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #e5e6ec;
  }
  .tt-page-header__course-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
  }
  .tt-page-header__course-action > a {
    width: 180px;
    height: 44px;
    margin-right: 32px;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
  }
  .tt-page-header__course-action time > span {
    font-size: 14px;
    line-height: 24px;
  }
  .tt-page-header__course-action time > a span {
    font-size: 18px;
    line-height: 24px;
  }
  .tt-page-header__course-action time > a svg {
    width: 24px;
    height: 24px;
  }
  .tt-page-header__video-player {
    --width: 510px;
    --height: 286px;
    width: var(--width, 510px);
    height: var(--height, 286px);
    margin-top: 0;
  }
  .tt-page-header__video-player-inner iframe {
    width: var(--width, 510px);
    height: var(--height, 286px);
  }
  .tt-page-header__video-player-inner .preview img {
    width: var(--width, 510px);
    height: var(--height, 286px);
  }
  .tt-page-header__course-properties {
    margin-top: 79px;
    display: flex;
    justify-content: center;
  }
  .tt-page-header__course-properties > *:not(:last-child) {
    margin-right: 24px;
  }
  .tt-page-header__course-properties-item i {
    font-size: 24px;
  }
  .tt-page-header__course-properties-item span {
    margin-left: 8px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
  }
  .tt-page-header__cursor {
    margin-top: 39.99px;
  }
  .navbar-light.header-menu-button {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .tt-page-header__inner-bg-img-b {
    margin-top: -2px;
  }
  .tt-page-header__inner-bg-lottie {
    bottom: -158px;
  }
  .tt-page-header__inner-bg-lottie-wrapper {
    bottom: -2px;
  }
  .tt-page-header__lines > lottie-player {
    bottom: -90px;
  }
  .tt-header-v2[scrolled=true] {
    background: #fff;
  }
  .tt-header-v2[scrolled=true] .tt-header-v2__navs > nav a,
  .tt-header-v2[scrolled=true] .tt-header-v2.homepage .tt-header-v2__navs > nav a {
    color: #2a2a2a;
  }
  .tt-header-v2[scrolled=true] .tt-header-v2__navs > nav a:hover,
  .tt-header-v2[scrolled=true] .tt-header-v2.homepage .tt-header-v2__navs > nav a:hover {
    color: #25539b;
  }
  .tt-header-v2__inner {
    justify-content: flex-start;
  }
  .tt-header-v2__navs {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
  }
  .tt-header-v2__navs-language {
    display: flex;
    border-radius: 27px;
    padding: 13px;
    align-content: center;
    justify-content: center;
    align-items: center;
    -webkit-transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    -moz-transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    -o-transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    opacity: 0.5;
    background: rgba(37, 83, 155, 0.2);
  }
  body.blue-header .tt-header-v2__navs-language {
    display: flex;
  }
  body:not(.blue-header) .tt-header-v2__navs-language {
    display: none;
  }
  .tt-header-v2__navs-language.highlight {
    background: #F9F9F9;
    opacity: 1;
  }
  .tt-header-v2__navs-language #secondary-language {
    width: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s linear;
  }
  .tt-header-v2__navs-language:hover {
    background: #F9F9F9;
    opacity: 1;
  }
  .tt-header-v2__navs-language:hover #secondary-language {
    width: 30px;
    text-align: center;
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
  }
  .tt-header-v2__navs-academy {
    width: 180px;
    position: relative;
    background: #25539b;
    border-radius: 59px;
    transition: background 300ms;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .tt-header-v2__navs-academy:hover {
    background: #58c2ad;
  }
  .tt-header-v2__navs-academy:hover .tt-header-v2__navs-academy-sub {
    display: block;
  }
  .tt-header-v2__navs-academy > a {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-family: "Raleway";
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #ffffff;
  }
  .tt-header-v2__navs-academy-sub {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
  }
  .tt-header-v2__navs-academy-sub-inner {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.25);
    top: 100%;
    padding: 5px 0;
    margin: 0;
    border-width: 4px 0 0;
    border-style: solid;
    border-color: #ffca00;
    flex-direction: column;
  }
  .tt-header-v2__navs-academy-sub-inner::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #ffca00;
    border-left: 7px solid transparent;
    border-top: 14px solid transparent;
    position: absolute;
    top: -30px;
    left: calc((100% - 14px) / 2);
  }
  .tt-header-v2__navs-academy-sub-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 26px;
    position: absolute;
    top: -18px;
    left: 0;
  }
  .tt-header-v2__navs-academy-sub-inner a {
    width: 100%;
    font-size: 16px;
    color: #2a2a2a !important;
    line-height: 1.773;
    border-bottom: 0 solid #fff !important;
    padding: 5px 15px;
    font-weight: 500;
  }
  .tt-header-v2__navs-academy-sub-inner a:hover {
    background: #ffca00;
  }
  .tt-header-v2__navs > nav {
    display: flex;
    align-items: center;
  }
  .tt-header-v2__navs > nav > *:not(:last-child) {
    margin-right: 9.9px;
  }
  .tt-header-v2__navs > nav a {
    font-family: "Raleway";
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    text-align: center;
    transition: color 250ms;
  }
  .tt-header-v2__navs > nav a:hover {
    color: #f0e5e5;
  }
  .navbar-light.header-menu-button {
    display: none;
  }
}
@media (min-width: 1400px) {
  .tt-header-v2__inner {
    padding: 15px 0;
  }
  .tt-page-header__lines > lottie-player {
    bottom: -160px;
  }
  .tt-page-header__curved-img {
    bottom: -44px;
    height: 144px;
  }
}
@media (min-width: 1200px) {
  .tt-page-header {
    height: 931px;
    padding-top: 189px;
  }
  .tt-page-header__inner {
    padding-bottom: 24px;
  }
  .tt-page-header__inner-top {
    min-height: 154px;
  }
  .tt-page-header__inner-bg-img-b {
    margin-top: -2px;
  }
  .tt-page-header__inner-bg-lottie {
    bottom: -158px;
  }
  .tt-page-header__inner-bg-lottie-wrapper {
    bottom: -2px;
  }
  .tt-page-header__lines > lottie-player {
    bottom: -90px;
  }
  .tt-page-header__course-properties {
    margin-top: 95px;
  }
  .tt-page-header__cursor {
    margin-top: 36px;
  }
  .tt-header-v2[scrolled=true] {
    background: #fff;
  }
  .tt-header-v2[scrolled=true] .tt-header-v2__navs > nav a,
  .tt-header-v2[scrolled=true] .tt-header-v2.homepage .tt-header-v2__navs > nav a {
    color: #2a2a2a;
  }
  .tt-header-v2[scrolled=true] .tt-header-v2__navs > nav a:hover,
  .tt-header-v2[scrolled=true] .tt-header-v2.homepage .tt-header-v2__navs > nav a:hover {
    color: #25539b;
  }
  .tt-header-v2__inner {
    justify-content: flex-start;
  }
  .tt-header-v2__navs {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
  }
  .tt-header-v2__navs-language {
    display: flex;
    border-radius: 27px;
    padding: 13px;
    align-content: center;
    justify-content: center;
    align-items: center;
    -webkit-transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    -moz-transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    -o-transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    transition: background 0.5s ease-in-out, opacity 0.5s linear, width 0.5s linear;
    opacity: 0.5;
    background: rgba(37, 83, 155, 0.2);
  }
  body.blue-header .tt-header-v2__navs-language {
    display: flex;
  }
  body:not(.blue-header) .tt-header-v2__navs-language {
    display: none;
  }
  .tt-header-v2__navs-language.highlight {
    background: #F9F9F9;
    opacity: 1;
  }
  .tt-header-v2__navs-language #secondary-language {
    width: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s linear;
  }
  .tt-header-v2__navs-language:hover {
    background: #F9F9F9;
    opacity: 1;
  }
  .tt-header-v2__navs-language:hover #secondary-language {
    width: 30px;
    text-align: center;
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
  }
  .tt-header-v2__navs-academy {
    width: 180px;
    position: relative;
    background: #25539b;
    border-radius: 59px;
    transition: background 300ms;
    margin-right: 35px;
  }
  .tt-header-v2__navs-academy:hover {
    background: #58c2ad;
  }
  .tt-header-v2__navs-academy:hover .tt-header-v2__navs-academy-sub {
    display: block;
  }
  .tt-header-v2__navs-academy > a {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-family: "Raleway";
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #ffffff;
  }
  .tt-header-v2__navs-academy-sub {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
  }
  .tt-header-v2__navs-academy-sub-inner {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.25);
    top: 100%;
    padding: 5px 0;
    margin: 0;
    border-width: 4px 0 0;
    border-style: solid;
    border-color: #ffca00;
    flex-direction: column;
  }
  .tt-header-v2__navs-academy-sub-inner::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #ffca00;
    border-left: 7px solid transparent;
    border-top: 14px solid transparent;
    position: absolute;
    top: -30px;
    left: calc((100% - 14px) / 2);
  }
  .tt-header-v2__navs-academy-sub-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 26px;
    position: absolute;
    top: -18px;
    left: 0;
  }
  .tt-header-v2__navs-academy-sub-inner a {
    width: 100%;
    font-size: 16px;
    color: #2a2a2a !important;
    line-height: 1.773;
    border-bottom: 0 solid #fff !important;
    padding: 5px 15px;
    font-weight: 500;
  }
  .tt-header-v2__navs-academy-sub-inner a:hover {
    background: #ffca00;
  }
  .tt-header-v2__navs > nav {
    display: flex;
    align-items: center;
  }
  .tt-header-v2__navs > nav > *:not(:last-child) {
    margin-right: 9.9px;
  }
  .tt-header-v2__navs > nav a {
    font-family: "Raleway";
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    text-align: center;
    transition: color 250ms;
  }
  .tt-header-v2__navs > nav a:hover {
    color: #f0e5e5;
  }
  .navbar-light.header-menu-button {
    display: none;
  }
}
@media (min-width: 1400px) {
  .tt-header-v2__inner {
    padding: 15px 0;
  }
  .tt-page-header__lines > lottie-player {
    bottom: -160px;
  }
}
@media (min-width: 2048px) {
  .tt-header-v2__inner {
    max-width: 1672px;
  }
  .tt-header-v2__navs {
    padding-left: 44px;
  }
  .tt-header-v2__navs-acedemy {
    width: 206px;
  }
  .tt-header-v2__navs-acedemy > a {
    padding: 10.5px 0;
    font-size: 22px;
    line-height: 32px;
  }
  .tt-header-v2__navs-acedemy-sub-inner a {
    font-size: 18px;
    line-height: 1.773;
    padding: 7px 17px;
  }
  .tt-header-v2__navs > nav > :not(:last-child) {
    margin-right: 12px;
  }
  .tt-header-v2__navs > nav a {
    font-size: 22px;
  }
  .tt-page-header {
    height: 1085px;
  }
  .tt-page-header__curved-img {
    height: 170px;
  }
  .tt-page-header__lines > lottie-player {
    bottom: -293px;
  }
  .tt-page-header__inner {
    max-width: 1682px;
  }
  .tt-page-header__inner-bg-img {
    height: 1000px;
  }
  .tt-page-header__inner-bg-lottie {
    bottom: -288px;
  }
  .tt-page-header__inner-bg-lottie-wrapper {
    width: 100vw;
    height: 581px;
  }
  .tt-page-header__inner-top {
    margin-right: -96px;
  }
  .tt-page-header__inner-mid {
    margin-right: -96px;
  }
  .tt-page-header__title {
    font-size: 50px;
    line-height: 58px;
  }
  .tt-page-header__title span {
    font-size: 42px;
    line-height: 58px;
  }
  .tt-page-header__desc {
    font-size: 22px;
    line-height: 36px;
  }
  .tt-page-header__video-player {
    --width: 727px;
    --height: 413.5px;
    width: var(--width, 848px);
    height: var(--height, 475.5px);
  }
  .tt-page-header__video-player > lottie-player {
    width: 60%;
    margin-left: auto;
  }
  .tt-page-header__video-player-inner iframe {
    width: var(--width, 848px);
    height: var(--height, 475.5px);
  }
  .tt-page-header__video-player-inner .preview img {
    width: var(--width, 848px);
    height: var(--height, 475.5px);
  }
  .tt-page-header__course-action {
    margin-top: 32px;
  }
  .tt-page-header__course-action > a {
    width: 198px;
    height: 55px;
    margin-right: 36px;
    font-weight: 700;
    font-size: 21px;
    line-height: 36px;
  }
  .tt-page-header__course-action time > span {
    font-size: 18px;
    line-height: 26px;
  }
  .tt-page-header__course-action time > a span {
    font-size: 19px;
    line-height: 26px;
  }
  .tt-page-header__course-action time > a svg {
    width: 26px;
    height: 26px;
  }
  .tt-page-header__course-properties > :not(:last-child) {
    margin-right: 26px;
  }
  .tt-page-header__course-properties-item i {
    font-size: 26px;
  }
  .tt-page-header__course-properties-item span {
    font-size: 22px;
  }
}
.navbar-shopping-cart {
  display: none;
}

.breadcrumbs-v2 {
  display: flex;
  align-items: center;
  overflow: scroll;
}
.breadcrumbs-v2::-webkit-scrollbar {
  height: 1px;
  width: auto;
}
.breadcrumbs-v2 > *:not(:last-child) {
  margin-right: 12px;
}
.breadcrumbs-v2__item {
  font-family: "Lato";
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: rgba(0, 0, 0, 0.45);
  position: relative;
  white-space: nowrap;
}
.breadcrumbs-v2__item:last-of-type {
  color: rgb(0, 0, 0);
}
.breadcrumbs-v2__item:not(:last-of-type)::after {
  content: ">";
  position: absolute;
  right: -9.5px;
}

@media (min-width: 992px) {
  .breadcrumbs-v2 {
    max-width: 1075.7px;
    margin: 0 auto;
  }
  .breadcrumbs-v2__item {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 2048px) {
  .breadcrumbs-v2 {
    max-width: 1449.7px;
    margin-top: 12px;
  }
  .breadcrumbs-v2 > *:not(:last-child) {
    margin-right: 14px;
  }
  .breadcrumbs-v2__item {
    font-size: 16px;
    line-height: 38px;
  }
  .breadcrumbs-v2__item:not(:last-of-type)::after {
    right: -11.5px;
  }
}
.tt-page-header-alt {
  height: 858px;
  background: #f9f9f9;
  overflow: hidden;
}
.tt-page-header-alt__inner {
  height: 855px;
  background: radial-gradient(59.97% 83.46% at 104.36% 19.01%, #25539b 0%, #18386c 27.3%, #10284f 71.13%);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.tt-page-header-alt__content {
  padding: 117px 15px 0;
  position: relative;
  z-index: 3;
}
.tt-page-header-alt__title {
  height: 107px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #ffffff;
}
.tt-page-header-alt__title span {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
}
.tt-page-header-alt__certificate-img {
  display: none;
}
.tt-page-header-alt__desc {
  font-family: "Lato";
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.tt-page-header-alt__course-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.tt-page-header-alt__course-action > a {
  width: 120px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 59px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  outline: 0;
  transition: background 300ms, border-color 300ms;
}
.tt-page-header-alt__course-action > a:hover,
.tt-page-header-alt__course-action > a :active {
  background: #58c2ad;
  border-color: #58c2ad;
}
.tt-page-header-alt__course-action time {
  display: inline-flex;
  align-items: center;
}
.tt-page-header-alt__course-action time > span {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 10px;
  line-height: 24px;
  color: #fff;
  margin-right: 3.24px;
}
.tt-page-header-alt__course-action time > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.tt-page-header-alt__course-action time > a span {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-right: 2.24px;
}
.tt-page-header-alt__course-action time > a svg {
  fill: #fff;
}
.tt-page-header-alt__course-action time > a:hover {
  margin-left: 2.5px;
}
.tt-page-header-alt__course-action time > a:hover span {
  color: #58c2ad;
}
.tt-page-header-alt__course-action time > a:hover svg {
  fill: #58c2ad;
}
.tt-page-header-alt__video-player {
  --width: 330px;
  --height: 186px;
  width: var(--width, 330px);
  height: var(--height, 186px);
  margin-top: 16px;
  /* Temp */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Temp */
}
.tt-page-header-alt__video-player-inner {
  position: relative;
  display: flex;
  background: linear-gradient(to bottom, #fff 100%, #a1a1a1 100%);
  border: 1.5px inset transparent;
  border-radius: 4px;
}
.tt-page-header-alt__video-player-inner iframe {
  width: var(--width, 330px);
  height: var(--height, 186px);
  border-radius: 4px;
}
.tt-page-header-alt__video-player-inner .preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
}
.tt-page-header-alt__video-player-inner .preview::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  border-radius: 4px;
  transition: background 300ms;
}
.tt-page-header-alt__video-player-inner .preview:hover::after {
  background: rgba(0, 0, 0, 0.19);
}
.tt-page-header-alt__video-player-inner .preview:hover .play-circle {
  background: #58c2ad;
}
.tt-page-header-alt__video-player-inner .preview img {
  width: var(--width, 330px);
  height: var(--height, 186px);
  object-fit: cover;
  border-radius: 4px;
}
.tt-page-header-alt__video-player-inner .preview .play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #18386c;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 300ms;
}
.tt-page-header-alt__video-player-inner .preview .play-circle:hover {
  background: #58c2ad;
}
.tt-page-header-alt__video-player-inner .preview .play-circle svg {
  width: 36px;
  height: 36px;
  fill: white;
}
.tt-page-header-alt__course-properties {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tt-page-header-alt__course-properties > *:not(:last-child) {
  margin-right: 16px;
}
.tt-page-header-alt__course-properties-item {
  display: inline-flex;
  align-items: center;
  color: #58c2ad;
  transition: color 200ms;
}
.tt-page-header-alt__course-properties-item:hover, .tt-page-header-alt__course-properties-item:active {
  color: #00ebbd;
}
.tt-page-header-alt__course-properties-item span {
  margin-left: 10px;
  font-family: "Lato";
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
}
.tt-page-header-alt__cursor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.tt-page-header-alt__lines {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.tt-page-header-alt__curved-img {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media (min-width: 992px) {
  .tt-page-header-alt {
    height: 950px;
  }
  .tt-page-header-alt__inner {
    height: 950px;
  }
  .tt-page-header-alt__content {
    padding: 149px 15px 0;
    max-width: 1206px;
    margin: 69.19px auto 0;
  }
  .tt-page-header-alt__content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tt-page-header-alt__content-mid {
    display: flex;
    margin-top: 54px;
  }
  .tt-page-header-alt__content-mid-left {
    margin-right: 36px;
  }
  .tt-page-header-alt__title {
    font-size: 48px;
    line-height: 56px;
  }
  .tt-page-header-alt__title span {
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
  }
  .tt-page-header-alt__certificate-img {
    width: auto;
    height: 100%;
    max-height: 115px;
    display: block;
  }
  .tt-page-header-alt__certificate-img-wrapper {
    /*width: 190px;*/
    max-height: 115px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: fit-content;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    border-radius: 24.5221px;
    align-items: center;
  }
  .tt-page-header-alt__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #e5e6ec;
  }
  .tt-page-header-alt__course-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
  }
  .tt-page-header-alt__course-action > a {
    width: 180px;
    height: 44px;
    margin-right: 32px;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
  }
  .tt-page-header-alt__course-action time > span {
    font-size: 14px;
    line-height: 24px;
  }
  .tt-page-header-alt__course-action time > a span {
    font-size: 18px;
    line-height: 24px;
  }
  .tt-page-header-alt__course-action time > a svg {
    width: 24px;
    height: 24px;
  }
  .tt-page-header-alt__video-player {
    --width: 510px;
    --height: 286px;
    width: var(--width, 510px);
    height: var(--height, 286px);
    margin-top: 0;
  }
  .tt-page-header-alt__video-player-inner iframe {
    width: var(--width, 510px);
    height: var(--height, 286px);
  }
  .tt-page-header-alt__video-player-inner .preview img {
    width: var(--width, 510px);
    height: var(--height, 286px);
  }
  .tt-page-header-alt__course-properties {
    margin-top: 79px;
    display: flex;
    justify-content: center;
  }
  .tt-page-header-alt__course-properties > *:not(:last-child) {
    margin-right: 24px;
  }
  .tt-page-header-alt__course-properties-item i {
    font-size: 24px;
  }
  .tt-page-header-alt__course-properties-item span {
    margin-left: 8px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
  }
  .tt-page-header-alt__cursor {
    margin-top: 39.99px;
  }
  .tt-page-header-alt__lines {
    display: block;
    bottom: -36px;
  }
}
@media (min-width: 1200px) {
  .tt-page-header-alt {
    height: 950px;
  }
  .tt-page-header-alt__inner {
    height: 950px;
    padding-bottom: 24px;
  }
  .tt-page-header-alt__course-properties {
    margin-top: 95px;
  }
  .tt-page-header-alt__cursor {
    margin-top: 36px;
  }
  .tt-page-header-alt__lines {
    bottom: -90px;
  }
}
@media (min-width: 1400px) {
  .tt-page-header-alt__lines {
    bottom: -160px;
  }
}
@media (min-width: 2048px) {
  .tt-page-header-alt {
    height: 1110px;
  }
  .tt-page-header-alt__inner {
    height: 1110px;
  }
  .tt-page-header-alt__content {
    max-width: 1682px;
  }
  .tt-page-header-alt__title {
    font-size: 50px;
    line-height: 58px;
  }
  .tt-page-header-alt__title span {
    font-size: 42px;
    line-height: 58px;
  }
  .tt-page-header-alt__desc {
    font-size: 22px;
    line-height: 36px;
  }
  .tt-page-header-alt__video-player {
    /* ja */
    --width: 627px;
    --height: 343.5px;
    /* ja */
    width: var(--width, 848px);
    height: var(--height, 475.5px);
  }
  .tt-page-header-alt__video-player > lottie-player {
    width: 60%;
    margin-left: auto;
  }
  .tt-page-header-alt__video-player-inner iframe {
    width: var(--width, 848px);
    height: var(--height, 475.5px);
  }
  .tt-page-header-alt__video-player-inner .preview img {
    width: var(--width, 848px);
    height: var(--height, 475.5px);
  }
  .tt-page-header-alt__course-properties > :not(:last-child) {
    margin-right: 26px;
  }
  .tt-page-header-alt__course-properties-item i {
    font-size: 26px;
  }
  .tt-page-header-alt__course-properties-item span {
    font-size: 22px;
  }
  .tt-page-header-alt__lines {
    bottom: -312px;
  }
}
.tt-article {
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.show-read-more .tt-article {
  max-height: none;
}

.tt-article::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.tt-article.show-read-more::after {
  opacity: 0;
}

.board-on-tectrain h4 {
  font-size: 14px;
  line-height: 20px;
}

.board-on-tectrain h2 {
  font-family: "Raleway", "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif, Arial, Verdana;
  font-style: normal;
  color: #ffffff;
}

.board-on-tectrain h2 {
  font-weight: 600 !important;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 26px;
  color: #00001C;
}

.board-on-tectrain h4,
.board-on-tectrain h5 {
  font-family: var(--raleway);
  font-weight: 500 !important;
  color: var(--violet);
}

.board-on-tectrain h3 {
  font-family: var(--raleway);
  font-weight: 600 !important;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--violet);
}

.board-on-tectrain h4 {
  font-family: "Lato", sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 700 !important;
  font-size: 18px;
  line-height: 24px;
  color: #080742;
  margin-bottom: 24px;
}

.board-on-tectrain p {
  font-family: "Lato", sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #00001C;
}

.board-on-tectrain p:not(:last-of-type) {
  margin-bottom: 8px;
}

.board-on-tectrain__area-wrapper ul,
.board-on-tectrain__area-wrapper ol {
  margin: 15px 15px;
  font-family: var(--lato);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #080742;
  list-style-type: disc !important;
}

.board-on-tectrain__area-wrapper ol li,
.board-on-tectrain__area-wrapper ul li {
  margin: 5px 0;
}

.board-on-tectrain__area-wrapper ul,
.board-on-tectrain__area-wrapper ol,
.board-on-tectrain__area-wrapper p {
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 1024px) {
  .board-on-tectrain__area-wrapper ul,
  .board-on-tectrain__area-wrapper ol,
  .board-on-tectrain__area-wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }
  .board-on-tectrain__area-wrapper ul, .board-on-tectrain__area-wrapper ol {
    margin-left: 50px;
  }
}
@media (min-width: 1440px) {
  .board-on-tectrain__area-wrapper ul,
  .board-on-tectrain__area-wrapper ol {
    margin-left: 50px;
  }
  .board-on-tectrain__area-wrapper ul,
  .board-on-tectrain__area-wrapper ol,
  .board-on-tectrain__area-wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 2560px) {
  .board-on-tectrain__area-wrapper ul,
  .board-on-tectrain__area-wrapper ol {
    font-size: 16px;
    line-height: 28px;
  }
}
.tt-footer-v2 {
  padding: 16px 15px 20px;
  background: radial-gradient(60.73% 82.91% at 102.81% -4.64%, #1f4583 10.15%, #1e4582 43.36%, #163769 88.73%);
}
.tt-footer-v2 section h4, .tt-footer-v2 section > div {
  font-family: "Raleway";
  font-weight: 600 !important;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.tt-footer-v2__inner {
  display: flex;
  flex-direction: column;
}

.tt-footer-v2__left {
  display: flex;
  flex-direction: column;
}
.tt-footer-v2__left > * {
  align-self: center;
}

.tt-footer-v2__right {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.tt-footer-v2__right > * {
  margin-top: 16px;
}

.tt-footer-v2__desc {
  margin-top: 16px;
}
.tt-footer-v2__desc p {
  font-family: "Raleway";
  font-size: 14px;
  line-height: 26px;
  color: #ffffff;
}
.tt-footer-v2__desc strong {
  font-weight: 500;
}
.tt-footer-v2__desc a {
  font-family: "Raleway";
  color: #58c2ad;
}

.tt-footer-v2__social-media {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tt-footer-v2__social-media > :not(:last-child) {
  margin-right: 16px;
}
.tt-footer-v2__social-media > a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tt-footer-v2__social-media > a:hover, .tt-footer-v2__social-media > a:active {
  background: #58c2ad;
  border-color: #58c2ad;
}
.tt-footer-v2__social-media > a img {
  width: 24px;
  height: 24px;
}

.tt-footer-v2__navigations nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tt-footer-v2__navigations nav > *:not(:first-child) {
  margin-top: 8px;
}
.tt-footer-v2__navigations nav a {
  font-family: "Raleway";
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  transition: color 300ms;
}
.tt-footer-v2__navigations nav a:hover, .tt-footer-v2__navigations nav a:active {
  color: #58c2ad;
}

.tt-footer-v2__form-form {
  flex-direction: column;
  margin-top: -16px !important;
  padding: 0 !important;
}
.tt-footer-v2__form-form > *:not(:last-child) {
  margin-right: 0 !important;
}
.tt-footer-v2__form-form > * {
  margin-top: 16px;
}
.tt-footer-v2__form-form input {
  min-width: 204px;
}
.tt-footer-v2__form-form input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.tt-footer-v2__form-form input.tt-footer-v2__form-date-input {
  position: relative;
}
.tt-footer-v2__form-form input.tt-footer-v2__form-date-input::-webkit-calendar-picker-indicator {
  width: auto;
  height: auto;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  cursor: pointer;
}

.tt-footer-v2__form-submit {
  border: 1.5px solid #ffffff;
  border-radius: 59px;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  color: #ffffff;
  padding: 8px 24px;
  outline: 0;
  transition: background 300ms, border-color 300ms;
}
.tt-footer-v2__form-submit:hover, .tt-footer-v2__form-submit:active, .tt-footer-v2__form-submit:focus {
  outline: 0;
  background: #58c2ad;
  border-color: #58c2ad;
}
.tt-footer-v2__form-submit:hover .lds-dual-ring::after, .tt-footer-v2__form-submit:active .lds-dual-ring::after, .tt-footer-v2__form-submit:focus .lds-dual-ring::after {
  border-color: white transparent white transparent;
}
.tt-footer-v2__form-submit .lds-dual-ring {
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  margin-right: 9px;
}
.tt-footer-v2__form-submit .lds-dual-ring::after {
  content: " ";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 6px solid #58c2ad;
  border-color: #58c2ad transparent #58c2ad transparent;
  animation: lds-dual-ring 1.2s linear infinite;
  transition: border-color 300ms;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tt-footer-v2__bottom {
  margin-top: 40px;
  padding: 0 10px;
}
.tt-footer-v2__bottom nav {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}
.tt-footer-v2__bottom nav a {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  transition: color 300ms;
}
.tt-footer-v2__bottom nav a:hover, .tt-footer-v2__bottom nav a:active {
  color: #58c2ad;
}

.tt-footer-v2__bottom-payment-methods {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tt-footer-v2__bottom-payment-methods img {
  width: 187.04px;
  height: 18px;
}

.tt-footer-v2__bottom-sub-text {
  font-family: "Raleway";
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.tt-footer-v2__bottom-sub-text * {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.tt-footer-v2__bottom-sub-text strong, .tt-footer-v2__bottom-sub-text b {
  font-weight: 700;
}

.tt-footer-v2__payment-methods-md {
  display: none;
}

.tt-footer-v2__info address {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tt-footer-v2__info address > * {
  margin-top: 16px;
}
.tt-footer-v2__info address a,
.tt-footer-v2__info address p, .tt-footer-v2__info address > div {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-style: normal;
}
.tt-footer-v2__info address a img,
.tt-footer-v2__info address p img, .tt-footer-v2__info address > div img {
  margin-right: 12px;
}
.tt-footer-v2__info address a span,
.tt-footer-v2__info address p span, .tt-footer-v2__info address > div span {
  max-width: 217px;
  font-family: "Raleway";
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}
.tt-footer-v2__info address p {
  max-width: 162px;
  margin: 24px 0 0;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .tt-footer-v2 {
    padding: 32px 12px 20px 32px;
  }
  .tt-footer-v2__left {
    padding-right: 23px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .tt-footer-v2__logo {
    order: 1;
  }
  .tt-footer-v2__desc {
    order: 3;
  }
  .tt-footer-v2__social-media {
    order: 2;
  }
  .tt-footer-v2__social-media > *:not(:last-child) {
    margin-right: 12px;
  }
  .tt-footer-v2__social-media > a {
    width: 32px;
    height: 32px;
    border: 2px solid #ffffff;
  }
  .tt-footer-v2__social-media > a img {
    width: 16px;
    height: 16px;
  }
  .tt-footer-v2__desc p {
    line-height: 20px;
  }
  .tt-footer-v2__right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .tt-footer-v2__navigations,
  .tt-footer-v2__info {
    width: 48.5%;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .tt-footer-v2__navigations nav,
  .tt-footer-v2__navigations address,
  .tt-footer-v2__info nav,
  .tt-footer-v2__info address {
    align-items: flex-start;
  }
  .tt-footer-v2__navigations nav > *:first-child,
  .tt-footer-v2__navigations address > *:first-child,
  .tt-footer-v2__info nav > *:first-child,
  .tt-footer-v2__info address > *:first-child {
    margin-top: 24px;
  }
  .tt-footer-v2__navigations nav a, .tt-footer-v2__navigations nav > div,
  .tt-footer-v2__navigations address a,
  .tt-footer-v2__navigations address > div,
  .tt-footer-v2__info nav a,
  .tt-footer-v2__info nav > div,
  .tt-footer-v2__info address a,
  .tt-footer-v2__info address > div {
    line-height: 20px;
  }
  .tt-footer-v2__navigations nav > *:not(:first-child) {
    margin-top: 12px;
  }
  .tt-footer-v2__info address > *:not(:first-child) {
    margin-top: 20px;
  }
  .tt-footer-v2__info address p {
    align-items: flex-start;
  }
  .tt-footer-v2__form {
    width: 100%;
    margin-top: 36px;
    padding-right: 23px !important;
  }
  .tt-footer-v2__form h4 {
    line-height: 24px;
    text-align: left;
  }
  .tt-footer-v2__form .tt-courses__contact-form-form.tt-footer-v2__form-form > *:first-child, .tt-footer-v2__form .tt-courses__contact-form-form.tt-footer-v2__form-form > *:last-child {
    margin-top: 24px;
  }
  .tt-footer-v2__form .tt-courses__contact-form-form.tt-footer-v2__form-form > div > input {
    width: 100%;
  }
  .tt-footer-v2__form .tt-courses__contact-form-form.tt-footer-v2__form-form .tt-footer-v2__form-submit {
    align-self: flex-end;
    padding: 4.5px 34.75px;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
  }
  .tt-footer-v2__bottom {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .tt-footer-v2__payment-methods-md {
    max-width: 1259px;
    margin: 39px auto 0;
    display: flex;
    align-items: center;
  }
  .tt-footer-v2__payment-methods-md img {
    width: 293.16px;
    height: 28px;
  }
  .tt-footer-v2__bottom {
    margin-top: 26px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tt-footer-v2__bottom-payment-methods {
    display: none;
  }
  .tt-footer-v2__bottom-sub-text {
    font-size: 15px;
    line-height: 28px;
  }
  .tt-footer-v2__bottom nav {
    margin-top: 0;
    flex-direction: row;
    align-items: center;
  }
  .tt-footer-v2__bottom nav > *:not(:last-child) {
    margin-right: 16px;
  }
  .tt-footer-v2__bottom nav a {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tt-footer-v2__right {
    flex-direction: row;
    justify-content: space-between;
  }
  .tt-footer-v2__payment-methods-md {
    margin: 48px auto;
  }
  .tt-footer-v2__bottom {
    position: relative;
  }
  #tectrain-provent-expert-container {
    position: absolute;
    bottom: 82px;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .tt-footer-v2 {
    padding: 64px 10px 75px;
  }
  .tt-footer-v2 section {
    flex: 1;
  }
  .tt-footer-v2 section h4, .tt-footer-v2 section > div {
    font-size: 24px;
    padding-bottom: 13px;
    margin: 0 0 12px;
    text-align: left;
  }
  .tt-footer-v2__inner {
    flex-direction: row;
    max-width: 1310px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
  .tt-footer-v2__left {
    width: 25%;
  }
  .tt-footer-v2__left > * {
    align-self: flex-start;
  }
  .tt-footer-v2__right {
    flex: 1;
    margin-left: 48px;
    flex-direction: row;
    margin-top: 0;
  }
  .tt-footer-v2__right > * {
    margin-top: 0;
  }
  .tt-footer-v2__desc {
    margin-top: 32px;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
  .tt-footer-v2__social-media {
    margin-top: 32px;
  }
  .tt-footer-v2__navigations nav {
    align-items: flex-start;
  }
  .tt-footer-v2__navigations nav > *:not(:first-child) {
    margin-top: 16px;
  }
  .tt-footer-v2__navigations nav a {
    font-size: 18px;
    line-height: 28px;
  }
  .tt-footer-v2__form-form.tt-courses__contact-form-form {
    align-items: stretch;
  }
  .tt-footer-v2__form-form.tt-courses__contact-form-form > * {
    margin-top: unset;
  }
  .tt-footer-v2__form-form.tt-courses__contact-form-form > *:not(:first-child) {
    margin-top: 32px;
  }
  .tt-footer-v2__form-form.tt-courses__contact-form-form > div {
    justify-content: flex-start;
  }
  .tt-footer-v2__form-form.tt-courses__contact-form-form > div input {
    width: 100%;
  }
  .tt-footer-v2__form-submit {
    font-size: 18px;
  }
  .tt-footer-v2__bottom {
    max-width: 1259px;
    margin: 154px auto 0;
    position: relative;
  }
  .tt-footer-v2__bottom div {
    font-size: 18px;
  }
  .tt-footer-v2__bottom nav > *:not(:last-child) {
    margin-right: 48px !important;
  }
  .tt-footer-v2__bottom nav a {
    font-size: 18px;
  }
  .tt-footer-v2__info address {
    align-items: flex-start;
  }
  .tt-footer-v2__info address > * {
    margin-top: 24px;
  }
  .tt-footer-v2__info address a span,
  .tt-footer-v2__info address p span, .tt-footer-v2__info address > div span {
    font-size: 18px;
    line-height: 28px;
  }
  .tt-footer-v2__info address p {
    margin: 0;
    max-width: unset;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .tt-footer-v2 {
    padding: 64px 0 75px;
  }
  .tt-footer-v2__right {
    margin-left: 77px;
  }
}
@media (min-width: 2048px) {
  .tt-footer-v2__inner {
    max-width: 1920px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .tt-footer-v2__desc {
    font-size: 16px;
  }
  .tt-footer-v2__desc p,
  .tt-footer-v2__desc a {
    font-size: 16px;
  }
  .tt-footer-v2__bottom {
    max-width: 1735px;
    margin-top: 96px;
  }
  .tt-footer-v2__payment-methods-md {
    display: none;
  }
  .tt-footer-v2__bottom-payment-methods {
    display: flex;
    margin: unset;
  }
}
@media (min-width: 2560px) {
  .tt-footer-v2__bottom {
    max-width: 1920px;
    margin-top: 164px;
  }
  .tt-footer-v2__bottom-payment-methods img {
    width: 394.07px;
    height: 36px;
  }
}
.tt-success-modal {
  width: 330px;
  position: fixed;
  top: -50%;
  left: 50%;
  z-index: 2001;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 6px;
  background: #58c2ad;
  transition: top 400ms ease-in 100ms;
  padding: 3px;
}

.tt-success-modal__inner {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tt-success-modal__inner svg {
  width: 60px;
  height: 60px;
  fill: #58c2ad;
}

.tt-success-modal__title {
  font-weight: 700 !important;
  color: #58c2ad;
}

.tt-error-modal {
  width: 330px;
  position: fixed;
  top: -50%;
  left: 50%;
  z-index: 2001;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 6px;
  background: red;
  transition: top 400ms ease-in 100ms;
  padding: 3px;
}

.tt-error-modal__inner {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tt-error-modal__inner svg {
  width: 60px;
  height: 60px;
  fill: red;
}

.tt-error-modal__title {
  font-weight: 700 !important;
  color: red;
}

:root {
  --raleway: "Raleway", Arial, Verdana, "Trebuchet MS", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --lato: "Lato", Arial, Verdana, "Trebuchet MS", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --violet: #080742;
  --m-blue: #120c6e;
}

/*BUTTONS*/
.tectrain-btn {
  border-radius: 59px;
  font-family: var(--raleway);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border: 2px solid transparent;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.tectrain-btn:active,
.tectrain-btn:focus {
  border: 2px solid inherit !important;
  outline: none !important;
}

.tectrain-btn.btn-midnight {
  color: #ffffff !important;
  background: var(--m-blue);
}

.tectrain-btn.btn-violet {
  color: #ffffff !important;
  background: var(--violet);
}

.tectrain-btn.btn-green {
  color: #ffffff;
  background: #0AAD5F;
}

.tectrain-btn.btn-white {
  color: var(--m-blue);
  background: #ffffff;
}

.tectrain-btn.btn-transparent {
  color: #0C00B8;
  background: transparent;
  border: 2px solid #0C00B8;
}

.tectrain-btn.btn-transparent.midnight-theme {
  border: 2px solid #080742;
  color: #080742;
  padding-top: 8px;
  padding-bottom: 8px;
}

.tectrain-btn.btn-transparent.midnight-theme:hover {
  background-color: #080742;
  color: #ffffff;
}

.tectrain-btn:hover {
  text-decoration: none !important;
}

#drawer-toggler:focus {
  outline: 0;
}

body[drawer-opened] {
  overflow: hidden;
}
body[drawer-opened] .tt-drawer {
  transform: translateX(0);
}

.tt-drawer {
  max-height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 105;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100vw);
  transition: transform 300ms;
}

.tt-drawer.show {
  display: flex;
}

.tt-drawer__header {
  padding: 15px 32px 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tt-drawer__close-button {
  background: transparent;
  border: 0;
}
.tt-drawer__close-button:hover svg g rect, .tt-drawer__close-button:active svg g rect {
  fill: #58c2ad;
}
.tt-drawer__close-button:focus {
  outline: 0;
}
.tt-drawer__close-button svg {
  width: 18px;
  height: 18px;
}
.tt-drawer__close-button svg g rect {
  fill: #25539b;
  transition: fill 300ms;
}

.tt-drawer__body {
  flex: 1;
  padding: 52px 88px 68px 42px;
  overflow: auto;
}
.tt-drawer__body > *:not(:last-child) {
  margin-bottom: 16px;
}

.tt-drawer__dropdown-container > button {
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
}
.tt-drawer__dropdown-container > button:hover span, .tt-drawer__dropdown-container > button:active span {
  color: #5cc3ae;
}
.tt-drawer__dropdown-container > button:hover svg g rect, .tt-drawer__dropdown-container > button:active svg g rect {
  fill: #5cc3ae;
}
.tt-drawer__dropdown-container > button:focus {
  outline: 0;
}
.tt-drawer__dropdown-container > button span {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #25539b;
  transition: color 300ms;
}
.tt-drawer__dropdown-container > button svg {
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
.tt-drawer__dropdown-container > button svg g rect {
  fill: #25539b;
  transition: fill 300ms;
}
.tt-drawer__dropdown-container.tt-drawer__dropdown-academy button svg:first-of-type {
  width: 24px;
  height: 24px;
  margin: 0 12px 0 0;
}
.tt-drawer__dropdown-container.tt-drawer__dropdown-academy .tt-drawer__dropdown-menu {
  margin: 0 -88px 0 -42px;
  padding: 0 88px 0 42px;
  background: radial-gradient(59.97% 83.46% at 104.36% 19.01%, #25539b 0%, #18386c 27.3%, #10284f 71.13%);
}
.tt-drawer__dropdown-container.tt-drawer__dropdown-academy .tt-drawer__dropdown-menu > * {
  margin-bottom: 16px;
}
.tt-drawer__dropdown-container.tt-drawer__dropdown-academy .tt-drawer__dropdown-menu > *:first-child {
  margin-top: 16px;
}
.tt-drawer__dropdown-container.tt-drawer__dropdown-academy .tt-drawer__dropdown-menu a {
  color: #ffffff;
}

.tt-drawer__dropdown-menu {
  display: none;
  flex-direction: column;
  margin-top: 8px;
  border-left: 1px solid #25539b;
  padding: 8px 0 0 16px;
}
.tt-drawer__dropdown-menu > *:not(:last-child) {
  margin-bottom: 16px;
}
.tt-drawer__dropdown-menu a {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #575f6b;
}

.tt-drawer__single-navigation {
  font-family: "Raleway";
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #25539b;
  transition: color 300ms;
  display: block;
}
.tt-drawer__single-navigation:hover, .tt-drawer__single-navigation:active {
  color: #5cc3ae;
}

.tt-drawer__footer {
  background: unset;
  display: flex;
  align-items: center;
  padding: 0 37px 24px 32px;
}

.tt-drawer__de-button {
  margin-right: 22px;
}

.tt-drawer__en-button {
  margin-right: 29px;
}

.tt-drawer__e-learning-button {
  border: 1.5px solid #25539b;
  border-radius: 24px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  transition: background 300ms;
}
.tt-drawer__e-learning-button:hover, .tt-drawer__e-learning-button:active {
  background: #25539b;
}
.tt-drawer__e-learning-button:hover svg g rect, .tt-drawer__e-learning-button:active svg g rect {
  fill: #fff;
}
.tt-drawer__e-learning-button:hover span, .tt-drawer__e-learning-button:active span {
  color: #fff;
}
.tt-drawer__e-learning-button svg {
  width: 20px;
  height: 20px;
}
.tt-drawer__e-learning-button svg g rect {
  fill: #25539b;
  transition: fill 300ms;
}
.tt-drawer__e-learning-button span {
  margin-left: 16px;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #25539b;
  transition: color 300ms;
}

@media (min-width: 1200px) {
  .tt-drawer {
    display: none;
  }
}
.rfy {
  padding: 32px 15px 24px;
  margin: 0 -15px;
  background: #fff7ee;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .rfy__inner {
    max-width: 592px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .rfy {
    padding: 64px 0;
    margin: 0;
  }
  .rfy__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) {
  .rfy {
    padding: 96px 0;
  }
  .rfy__inner {
    max-width: 1920px;
  }
}
.rfy-similars__header {
  display: flex;
  justify-content: space-between;
}

.rfy-similars__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700 !important;
  font-size: 20px;
  line-height: 24px;
  color: #080742;
}

.rfy-similars__desc {
  max-width: 251px;
  margin-top: 8px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #080742;
}

.rfy-similars__icon {
  width: 32px;
  height: 32px;
}

.rfy-similars__link {
  display: none;
}

.rfy-similars__content {
  margin-top: 16px;
}
.rfy-similars__content .course-catalog {
  display: none;
}

.rfy-similars-item {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 8px rgba(18, 12, 110, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  transition: filter 300ms ease-out;
}
.rfy-similars-item:not(.type-1) {
  margin-top: 16px;
}
.rfy-similars-item:hover, .rfy-similars-item:active {
  filter: drop-shadow(0px 6px 16px rgba(24, 56, 108, 0.2));
}

.rfy-similars-item__link {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rfy-similars-item__link i {
  font-size: 18px;
  color: #080742;
}

.rfy-similars-item__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700 !important;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.04em;
  color: #080742;
}

.rfy-similars-item__desc {
  max-width: 210px;
  margin-top: 8px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04em;
  color: #080742;
}

.rfy-similars__more {
  margin-top: 16px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #f39200;
  box-shadow: 0px 4px 8px rgba(18, 12, 110, 0.1);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rfy-similars__more:hover, .rfy-similars__more:active {
  filter: drop-shadow(0px 6px 16px rgba(24, 56, 108, 0.2));
}
.rfy-similars__more span {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.rfy-similars__more i {
  font-size: 18px;
  color: #fff;
}

@media (min-width: 1200px) {
  .rfy-similars__title {
    font-size: 24px;
    line-height: 32px;
  }
  .rfy-similars__desc {
    max-width: initial;
    margin-top: 4px;
    font-size: 18px;
    line-height: 24px;
  }
  .rfy-similars__icon {
    display: none;
  }
  .rfy-similars__link {
    display: inline-flex;
    align-items: center;
  }
  .rfy-similars__link span {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: #120c6e;
  }
  .rfy-similars__link i {
    font-size: 20px;
    margin-left: 14px;
    color: #120c6e;
  }
  .rfy-similars__content {
    margin-top: 32px;
    display: flex;
  }
  .rfy-similars__content .course-catalog {
    max-width: 400px;
    height: 268px;
    display: block;
  }
  .rfy-similars__content .course-catalog .catalog-area-title,
  .rfy-similars__content .course-catalog .course-catalog-text p {
    font-family: "Raleway";
  }
  .rfy-similars__courses {
    margin-left: 40px;
    display: flex;
    flex-wrap: wrap;
  }
  .rfy-similars-item {
    width: 400px;
  }
  .rfy-similars-item:not(.type-1) {
    margin-top: 0;
  }
  .rfy-similars-item.type-3, .rfy-similars-item.type-4 {
    margin-top: 32px;
  }
  .rfy-similars-item.type-2, .rfy-similars-item.type-4 {
    margin-left: 40px;
  }
  .rfy-similars-item__link {
    padding: 24px 36px 18px 28px;
  }
  .rfy-similars-item__link i {
    font-size: 20px;
  }
  .rfy-similars-item__title {
    font-size: 18px;
    line-height: 24px;
  }
  .rfy-similars-item__desc {
    max-width: 250px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .rfy-similars__more {
    display: none;
  }
}
@media (min-width: 2560px) {
  .rfy-similars__header {
    justify-content: initial;
  }
  .rfy-similars-header__top {
    order: 2;
    margin-left: 24px;
    flex: 1;
  }
  .rfy-similars__title {
    font-size: 36px;
    line-height: 40px;
  }
  .rfy-similars__desc {
    margin-top: 8px;
    font-size: 22px;
    line-height: 28px;
  }
  .rfy-similars__icon {
    order: 1;
    width: 64px;
    height: 64px;
    display: inline-block;
  }
  .rfy-similars__link {
    order: 3;
  }
  .rfy-similars__link span {
    font-size: 24px;
    line-height: 32px;
  }
  .rfy-similars__link i {
    font-size: 24px;
    margin-left: 24px;
  }
  .rfy-similars__content {
    margin-top: 50px;
  }
  .rfy-similars__content .course-catalog {
    max-width: 450px;
    height: 300px;
  }
  .rfy-similars-item {
    width: 450px;
  }
  .rfy-similars-item.type-3 {
    margin-top: 0;
  }
  .rfy-similars-item.type-4, .rfy-similars-item.type-5, .rfy-similars-item.type-6 {
    margin-top: 40px;
  }
  .rfy-similars-item.type-4 {
    margin-left: 0;
  }
  .rfy-similars-item.type-2, .rfy-similars-item.type-3, .rfy-similars-item.type-5, .rfy-similars-item.type-6 {
    margin-left: 40px;
  }
  .rfy-similars-item__link {
    padding: 26px 36px 26px 32px;
  }
  .rfy-similars-item__link i {
    font-size: 24px;
  }
  .rfy-similars-item__title {
    line-height: 26px;
  }
  .rfy-similars-item__desc {
    max-width: 252px;
  }
  .rfy-similars__more {
    display: none;
  }
}
.rfy-articles {
  margin-top: 32px;
}

.rfy-articles__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rfy-articles__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600 !important;
  font-size: 18px;
  line-height: 26px;
  color: #080742;
}

.rfy-articles__progress-desktop {
  display: none;
}

.rfy-articles__buttons {
  display: flex;
  align-items: center;
}

.rfy-articles__button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: #fedec3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: visibility 200ms;
  cursor: pointer;
}
.rfy-articles__button:focus {
  outline: 0;
}
.rfy-articles__button.rfy-articles__button--prev i {
  transform: rotate(180deg);
}
.rfy-articles__button.rfy-articles__button--next {
  margin-left: 16px;
}
.rfy-articles__button.disabled {
  visibility: hidden;
}
.rfy-articles__button i {
  font-size: 11.25px;
  color: #120c6e;
}

.rfy-articles__list {
  max-height: 398px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.rfy-articles__list::-webkit-scrollbar {
  height: 0;
}

.rfy-articles-item {
  width: 330px;
  min-height: 122px;
  backdrop-filter: blur(16px);
  border-radius: 4px;
  background: linear-gradient(97.55deg, rgba(253, 192, 148, 0.5) -11.87%, rgba(253, 192, 148, 0) 120.53%);
}
.rfy-articles-item.type-2, .rfy-articles-item.type-3, .rfy-articles-item.type-5, .rfy-articles-item.type-6 {
  margin-top: 16px;
}

.rfy-articles-item__link {
  width: 100%;
  min-height: inherit;
  padding: 20px 20px 20px 22px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rfy-articles-item__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 18px;
  color: #080742;
}

.rfy-articles-item__footer {
  margin-top: 8px;
  padding: 0;
  display: flex;
  align-items: center;
}

.rfy-articles-item__date {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #575f6b;
}

.rfy-articles-item__duration {
  margin-left: 45px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #575f6b;
}

.rfy-articles__progress-mobile {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rfy-articles__progress-mobile span {
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: #c4c4c4;
  display: inline-block;
  transition: width 200ms, background 200ms;
}
.rfy-articles__progress-mobile span.active {
  width: 48px;
  background: #080742;
}
.rfy-articles__progress-mobile span:not(.first-type) {
  margin-left: 8px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .rfy-articles-item {
    width: 296px;
  }
}
@media (min-width: 1200px) {
  .rfy-articles {
    margin-top: 40px;
  }
  .rfy-articles__header {
    justify-content: initial;
  }
  .rfy-articles__title {
    font-weight: 700 !important;
    font-size: 24px;
    line-height: 32px;
  }
  .rfy-articles__progress-desktop {
    margin-left: 20px;
    flex: 1;
    display: flex;
    align-items: center;
  }
  .rfy-articles__progress-desktop > :not(:first-child) {
    margin-left: 8px;
  }
  .rfy-articles__progress-desktop span {
    width: 32px;
    height: 4px;
    background: #c4c4c4;
    border-radius: 4px;
    cursor: pointer;
    transition: width 200ms, background 200ms;
  }
  .rfy-articles__progress-desktop span.active {
    width: 58px;
    background: #080742;
  }
  .rfy-articles__button {
    width: 32px;
    height: 32px;
    background: transparent;
    transition: background 300ms ease-out;
  }
  .rfy-articles__button.rfy-articles__button--next {
    margin-left: 32px;
  }
  .rfy-articles__button.disabled {
    display: inline-flex;
    pointer-events: none;
  }
  .rfy-articles__button.disabled i {
    color: #c4c4c4;
  }
  .rfy-articles__button:hover, .rfy-articles__button:active {
    background: #fedec3;
  }
  .rfy-articles__button i {
    font-size: 20px;
  }
  .rfy-articles__list {
    max-height: 144px;
    margin-top: 20px;
  }
  .rfy-articles__list.no-full-xl {
    flex-direction: row;
  }
  .rfy-articles-item {
    width: 400px;
    min-height: 144px;
    border-radius: 8px;
    backdrop-filter: unset;
    background: transparent;
    transition: background 300ms ease-out;
  }
  .rfy-articles-item.type-3, .rfy-articles-item.type-6 {
    margin-top: 0;
  }
  .rfy-articles-item.type-2, .rfy-articles-item.type-5 {
    margin: 0 40px;
  }
  .rfy-articles-item:hover {
    background: linear-gradient(97.55deg, rgba(253, 192, 148, 0.5) -11.87%, rgba(253, 192, 148, 0) 120.53%);
  }
  .rfy-articles-item__link {
    padding: 16px 20px;
  }
  .rfy-articles-item__title {
    font-size: 18px;
    line-height: 24px;
  }
  .rfy-articles-item__footer {
    margin-top: 20px;
  }
  .rfy-articles-item__date {
    font-size: 14px;
    line-height: 20px;
    color: #080742;
  }
  .rfy-articles-item__duration {
    margin-left: 29px;
    font-size: 14px;
    line-height: 20px;
    color: #080742;
  }
  .rfy-articles__progress-mobile {
    display: none;
  }
}
@media (min-width: 2560px) {
  .rfy-articles {
    margin-top: 64px;
  }
  .rfy-articles__title {
    font-size: 32px;
    line-height: 40px;
  }
  .rfy-articles__progress-desktop {
    margin-left: 24px;
  }
  .rfy-articles__progress-desktop > :not(:first-child) {
    margin-left: 12px;
  }
  .rfy-articles__progress-desktop span {
    width: 48px;
  }
  .rfy-articles__progress-desktop span.active {
    width: 80px;
  }
  .rfy-articles__progress-desktop.hide-on-4k,
  .rfy-articles__buttons.hide-on-4k {
    display: none;
  }
  .rfy-articles__button {
    width: 48px;
    height: 48px;
  }
  .rfy-articles__button.rfy-articles__button--next {
    margin-left: 48px;
  }
  .rfy-articles__button i {
    font-size: 24px;
  }
  .rfy-articles__list {
    max-height: 190px;
    margin-top: 24px;
  }
  .rfy-articles__list.no-full-4k {
    flex-direction: row;
  }
  .rfy-articles-item {
    width: 450px;
    min-height: 190px;
  }
  .rfy-articles-item__link {
    padding: 24px 20px;
  }
  .rfy-articles-item__title {
    font-weight: 500 !important;
    font-size: 24px;
    line-height: 32px;
  }
  .rfy-articles-item__date {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
  }
  .rfy-articles-item__duration {
    margin-left: 74px;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
  }
}
.last-chance-swiper-outer {
  padding: 32px 15px;
  background: linear-gradient(-58deg, rgb(2, 0, 31) 0%, rgb(8, 0, 109) 100%);
  position: relative;
}

.last-chance-swiper {
  height: 652px;
}

.last-chance-swiper__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700 !important;
  font-size: 20px;
  line-height: 24px;
  color: #ffe9d7;
}

.last-chance-swiper__desc {
  margin: 4px 0 0;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fedec3;
}

.last-chance-swiper__list {
  height: 498px;
  margin-top: 24px;
}

.last-chance-swiper-item {
  height: calc((100% - 40px) / 2);
}
.last-chance-swiper-item:hover .last-chance-swiper-item__link, .last-chance-swiper-item:active .last-chance-swiper-item__link {
  background: linear-gradient(0deg, #ffffff, #ffffff), radial-gradient(113.08% 113.08% at 50% 36.92%, rgba(249, 249, 249, 0) 42.12%, rgba(249, 249, 249, 0.43) 88.38%);
  border-color: #15d2ad;
}
.last-chance-swiper-item:hover .last-chance-swiper-item__link svg path, .last-chance-swiper-item:active .last-chance-swiper-item__link svg path {
  fill: #080742;
}
.last-chance-swiper-item:hover .last-chance-swiper-item__title,
.last-chance-swiper-item:hover .last-chance-swiper-item__desc, .last-chance-swiper-item:active .last-chance-swiper-item__title,
.last-chance-swiper-item:active .last-chance-swiper-item__desc {
  color: #080742;
}
.last-chance-swiper-item:hover .last-chance-swiper-item-footer__button, .last-chance-swiper-item:active .last-chance-swiper-item-footer__button {
  background: #fdc094;
  color: #fff;
}

.last-chance-swiper-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.last-chance-swiper-item__top-title {
  margin: 0;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #fdc094;
}

.last-chance-swiper-item__counter {
  padding: 4px 6.75px;
  border-radius: 4px;
  border: 1px solid #fedec3;
  background: #fdc094;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.last-chance-swiper-item__counter img {
  width: 14px;
  height: 14px;
}
.last-chance-swiper-item__counter span {
  margin-left: 8px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #120c6e;
}

.last-chance-swiper-item__link {
  margin-top: 8px;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: radial-gradient(113.08% 113.08% at 50% 36.92%, rgba(249, 249, 249, 0) 42.12%, rgba(249, 249, 249, 0.43) 88.38%), rgba(102, 150, 248, 0.6);
  box-shadow: 0px 4px 12px rgba(7, 4, 27, 0.4);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 400ms ease-out, border-color 400ms ease-out;
}
.last-chance-swiper-item__link svg {
  width: 18px;
  height: 12px;
}
.last-chance-swiper-item__link svg path {
  fill: #fff;
  transition: fill 400ms ease-out;
}

.last-chance-swiper-item__title,
.last-chance-swiper-item__desc {
  font-family: "Raleway";
  font-style: normal;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: color 400ms ease-out;
}

.last-chance-swiper-item__title {
  font-weight: 700 !important;
  font-size: 14px;
  line-height: 18px;
}

.last-chance-swiper-item__desc {
  max-width: 206px;
  margin: 8px 0 0;
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.last-chance-swiper-item-footer {
  margin-top: 16px;
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.last-chance-swiper-item-footer__left {
  max-width: 130px;
}

.last-chance-swiper-item-seats {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.last-chance-swiper-item-seats__count {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #15d2ad;
}

.last-chance-swiper-item-seats__icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.last-chance-swiper-item-seats__text {
  margin-left: 12px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}

.last-chance-swiper-item-footer__button {
  min-width: 116px;
  min-height: 40px;
  margin-top: 12px;
  padding: 0 27.5px;
  border-radius: 59px;
  background: #080742;
  box-shadow: 0px 4px 12px rgba(94, 114, 235, 0.2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #ffffff;
  transition: background 400ms ease-out, color 400ms ease-out;
}

.last-chance-swiper-item-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.last-chance-swiper-item-prices {
  display: inline-flex;
  align-items: baseline;
}

.last-chance-swiper-item-prices__default {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-decoration: line-through;
  color: #e5e6ec;
}

.last-chance-swiper-item-prices__discounted {
  margin-left: 12px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #15d2ad;
}

.last-chance-swiper-item-discount {
  min-width: 157px;
  min-height: 28px;
  margin: 8px 0 0;
  padding: 2px 12px;
  border-radius: 4px;
  background: #15d2ad;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.last-chance-swiper-item-discount__icon {
  width: 14px;
  height: 14px;
}

.last-chance-swiper-item-discount__text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

.last-chance-swiper-pagination span {
  width: 48px;
  height: 4px;
  background: #5e72eb;
  border-radius: 4px;
  opacity: 1;
  transition: width 200ms, background 200ms;
}
.last-chance-swiper-pagination span[aria-current=true] {
  width: 80px;
  background: #fedec3;
}

.last-chance-swiper__placeholder {
  display: none;
}

@media (min-width: 600px) {
  .last-chance-swiper-outer {
    margin: 0;
    padding: 40px 30px;
  }
  .last-chance-swiper {
    margin: 0 auto;
    height: auto;
  }
  .last-chance-swiper__title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.88px;
    color: #fedec3;
  }
  .last-chance-swiper__desc {
    margin-top: 2px;
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
  }
  .last-chance-swiper__list {
    height: 230px;
    margin-top: 32px;
    padding-bottom: 32px;
  }
  .last-chance-swiper-item {
    width: 262px;
    height: auto;
  }
  .last-chance-swiper-item__top-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
  }
  .last-chance-swiper-item__counter {
    min-width: 76px;
    padding: 3px 7px;
  }
  .last-chance-swiper-item__counter img {
    width: 12px;
    height: 12px;
  }
  .last-chance-swiper-item__counter span {
    font-size: 10px;
    line-height: 14px;
  }
  .last-chance-swiper-item__link {
    min-height: 82px;
    margin-top: 16px;
    padding: 15px;
  }
  .last-chance-swiper-item__link svg {
    width: 12px;
    height: 8px;
  }
  .last-chance-swiper-item__title {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.48px;
  }
  .last-chance-swiper-item__desc {
    max-width: 142px;
    margin-top: 4px;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.4px;
  }
  .last-chance-swiper-item-footer {
    margin-top: 18px;
  }
  .last-chance-swiper-item-footer__left {
    max-width: 110px;
  }
  .last-chance-swiper-item-seats__count {
    font-size: 12px;
    line-height: 16px;
  }
  .last-chance-swiper-item-seats__icon {
    width: 10px;
    height: 10px;
  }
  .last-chance-swiper-item-seats__text {
    width: 100%;
    margin-left: 4px;
    font-size: 12px;
    line-height: 16px;
  }
  .last-chance-swiper-item-footer__button {
    min-width: 64px;
    min-height: 32px;
    margin-top: 8px;
    padding: 7px 14px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }
  .last-chance-swiper-item-prices {
    align-items: center;
  }
  .last-chance-swiper-item-prices__default {
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
  }
  .last-chance-swiper-item-prices__discounted {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
  }
  .last-chance-swiper-item-discount {
    min-width: initial;
    min-height: 32px;
    margin-top: 16px;
    padding: 3px 6px;
  }
  .last-chance-swiper-item-discount__icon {
    width: 10px;
    height: 10px;
  }
  .last-chance-swiper-item-discount__text {
    margin-left: 4px;
    font-size: 11px;
    line-height: 26px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal {
    bottom: 0;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal > :not(:first-child) {
    margin-left: 8px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span {
    width: 24px;
    height: 2px;
    margin: 0;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span[aria-current=true] {
    width: 48px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }
  .last-chance-swiper-prev,
  .last-chance-swiper-next {
    top: 6px;
  }
  .last-chance-swiper-prev::after,
  .last-chance-swiper-next::after {
    content: unset;
  }
  .last-chance-swiper-prev.swiper-button-disabled,
  .last-chance-swiper-next.swiper-button-disabled {
    opacity: 1;
  }
  .last-chance-swiper-prev.swiper-button-disabled svg path,
  .last-chance-swiper-next.swiper-button-disabled svg path {
    fill: #5e72eb;
  }
  .last-chance-swiper-prev svg,
  .last-chance-swiper-next svg {
    width: 12px;
    height: 8px;
  }
  .last-chance-swiper-prev svg path,
  .last-chance-swiper-next svg path {
    fill: #fedec3;
  }
  .last-chance-swiper-prev {
    right: 40px;
    left: initial;
  }
  .last-chance-swiper-next {
    right: 0;
  }
  .last-chance-swiper__placeholder {
    display: none;
  }
}
@media (min-width: 1024px) {
  .last-chance-swiper-outer {
    padding: 48px 52px 40px;
  }
  .last-chance-swiper__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: initial;
  }
  .last-chance-swiper__desc {
    margin-top: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  .last-chance-swiper__list {
    height: 252px;
    padding-bottom: 40px;
  }
  .last-chance-swiper-item {
    width: 220px;
  }
  .last-chance-swiper-item__top-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
  }
  .last-chance-swiper-item__counter {
    min-width: 93px;
    padding: 5px 11px;
  }
  .last-chance-swiper-item__counter img {
    width: 13px;
    height: 13px;
  }
  .last-chance-swiper-item__counter span {
    font-size: 12px;
    line-height: 18px;
  }
  .last-chance-swiper-item__link {
    min-height: 102px;
    padding: 19px 31px 19px 19px;
  }
  .last-chance-swiper-item__link svg {
    width: 15px;
    height: 10px;
  }
  .last-chance-swiper-item__title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
  }
  .last-chance-swiper-item__desc {
    max-width: 172px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.48px;
  }
  .last-chance-swiper-item-footer {
    margin-top: 16px;
  }
  .last-chance-swiper-item-footer__left {
    max-width: initial;
    display: flex;
    flex-direction: column;
  }
  .last-chance-swiper-item-seats__count {
    font-size: 18px;
    line-height: 24px;
  }
  .last-chance-swiper-item-seats__icon {
    width: 12px;
    height: 12px;
  }
  .last-chance-swiper-item-seats__text {
    margin-left: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
  }
  .last-chance-swiper-item-footer__button {
    min-width: 63px;
    min-height: 32px;
    margin-top: 12px;
  }
  .last-chance-swiper-item-prices__default {
    font-size: 14px;
    line-height: 18px;
  }
  .last-chance-swiper-item-prices__discounted {
    font-size: 18px;
    line-height: 24px;
  }
  .last-chance-swiper-item-discount {
    min-width: initial;
    min-height: 32px;
    margin-top: 16px;
    padding: 3px 6px;
  }
  .last-chance-swiper-item-discount__icon {
    width: 10px;
    height: 10px;
  }
  .last-chance-swiper-item-discount__text {
    margin-left: 4px;
    font-size: 11px;
    line-height: 26px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span {
    width: 32px;
    height: 3px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span[aria-current=true] {
    width: 64px;
  }
  .last-chance-swiper-prev,
  .last-chance-swiper-next {
    top: 10px;
  }
  .last-chance-swiper-prev svg,
  .last-chance-swiper-next svg {
    width: 15px;
    height: 10px;
  }
  .last-chance-swiper-prev {
    right: 48px;
  }
}
@media (min-width: 1200px) {
  .last-chance-swiper-outer {
    padding: 64px 0;
  }
  .last-chance-swiper {
    max-width: 1260px;
    margin: 0 auto;
    height: auto;
  }
  .last-chance-swiper__title {
    font-size: 33px;
    line-height: 40px;
    letter-spacing: 1.28px;
  }
  .last-chance-swiper__desc {
    font-size: 18px;
    line-height: 24px;
  }
  .last-chance-swiper__list {
    height: 336px;
    margin-top: 40px;
    padding-bottom: 48px;
  }
  .last-chance-swiper-item {
    width: 399px;
    height: auto;
  }
  .last-chance-swiper-item__top-title {
    font-size: 22px;
    line-height: 24px;
  }
  .last-chance-swiper-item__counter {
    min-width: 104px;
    padding: 3.65px 11px;
  }
  .last-chance-swiper-item__counter img {
    width: 16px;
    height: 16px;
  }
  .last-chance-swiper-item__counter span {
    font-size: 14px;
    line-height: 26px;
  }
  .last-chance-swiper-item__link {
    min-height: 118px;
    margin-top: 14.45px;
    padding: 23px 31px 23px 23px;
  }
  .last-chance-swiper-item__link svg {
    width: 18px;
    height: 12px;
  }
  .last-chance-swiper-item__title {
    font-size: 16px;
    line-height: 22px;
  }
  .last-chance-swiper-item__desc {
    max-width: 184px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: initial;
  }
  .last-chance-swiper-item-footer {
    margin-top: 32px;
  }
  .last-chance-swiper-item-seats {
    flex-wrap: wrap;
  }
  .last-chance-swiper-item-seats__count {
    font-size: 22px;
    line-height: 32px;
  }
  .last-chance-swiper-item-seats__icon {
    width: 14px;
    height: 14px;
  }
  .last-chance-swiper-item-seats__text {
    margin-left: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
  .last-chance-swiper-item-footer__button {
    min-width: 100px;
    min-height: 40px;
    margin-top: 21px;
    padding: 9px 23px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: initial;
  }
  .last-chance-swiper-item-prices__default {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
  .last-chance-swiper-item-prices__discounted {
    font-size: 24px;
    line-height: 32px;
  }
  .last-chance-swiper-item-discount {
    min-width: 189px;
    min-height: 32px;
    margin-top: 16px;
    padding: 3px 12px;
  }
  .last-chance-swiper-item-discount__icon {
    width: 18px;
    height: 18px;
  }
  .last-chance-swiper-item-discount__text {
    margin-left: 8px;
    font-size: 13px;
    line-height: 26px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal {
    width: auto;
    top: initial;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal > :not(:first-child) {
    margin-left: 12px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span {
    width: 40px;
    height: 4px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span[aria-current=true] {
    width: 80px;
  }
  .last-chance-swiper-prev,
  .last-chance-swiper-next {
    top: 12px;
  }
  .last-chance-swiper-prev svg,
  .last-chance-swiper-next svg {
    width: 20px;
    height: 13.33px;
  }
  .last-chance-swiper-prev {
    right: 52px;
    left: initial;
  }
  .last-chance-swiper-next {
    right: 0;
  }
  .last-chance-swiper__placeholder {
    width: 927px;
    height: 534px;
    display: flex;
    position: absolute;
    top: 0;
    right: calc((100vw - 1280px) / 2);
  }
  .last-chance-swiper__placeholder.only-4k {
    display: none;
  }
}
@media (min-width: 2560px) {
  .last-chance-swiper-outer {
    padding: 96px 0px 80px;
  }
  .last-chance-swiper {
    max-width: 1920px;
  }
  .last-chance-swiper__title {
    font-size: 56px;
    line-height: 64px;
  }
  .last-chance-swiper__desc {
    margin-top: 8px;
    font-size: 28px;
    line-height: 42px;
  }
  .last-chance-swiper__list {
    height: 329px;
    margin-top: 64px;
    padding-bottom: 64px;
  }
  .last-chance-swiper-item {
    width: 450px;
  }
  .last-chance-swiper-item__header {
    padding: 0 15px;
  }
  .last-chance-swiper-item__top-title {
    font-size: 22px;
    line-height: 32px;
  }
  .last-chance-swiper-item__counter {
    min-width: 122px;
    padding: 4px 10.9px;
  }
  .last-chance-swiper-item__counter img {
    width: 18px;
    height: 18px;
  }
  .last-chance-swiper-item__counter span {
    font-size: 18px;
    line-height: 26px;
  }
  .last-chance-swiper-item__link {
    min-height: 130px;
    padding: 25px 36px 25px 32px;
  }
  .last-chance-swiper-item__link svg {
    width: 25px;
    height: 16.67px;
  }
  .last-chance-swiper-item__title {
    font-size: 18px;
    line-height: 26px;
  }
  .last-chance-swiper-item-footer__left {
    max-width: 156px;
  }
  .last-chance-swiper-item-seats {
    flex-wrap: nowrap;
  }
  .last-chance-swiper-item-seats__icon {
    margin-left: 4px;
  }
  .last-chance-swiper-item-seats__text {
    width: initial;
    margin-left: 12px;
    font-size: 17px;
  }
  .last-chance-swiper-item-footer__button {
    box-shadow: 0px 4px 12px rgba(94, 114, 235, 0.2);
    display: flex;
    font-size: 18px;
  }
  .last-chance-swiper-item-discount {
    min-width: 229px;
    min-height: 36px;
    padding: 5px 11.75px;
  }
  .last-chance-swiper-item-discount__icon {
    width: 18px;
    height: 18px;
  }
  .last-chance-swiper-item-discount__text {
    font-size: 16px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span {
    width: 48px;
  }
  .swiper-pagination.last-chance-swiper-pagination.swiper-pagination-horizontal span[aria-current=true] {
    width: 96px;
  }
  .last-chance-swiper-prev,
  .last-chance-swiper-next {
    top: 30px;
  }
  .last-chance-swiper-prev svg,
  .last-chance-swiper-next svg {
    width: 24px;
    height: 16px;
  }
  .last-chance-swiper-prev {
    right: 60px;
  }
  .last-chance-swiper__placeholder {
    width: 1233.5px;
    height: 744px;
    right: calc((100vw - 1920px) / 2);
  }
  .last-chance-swiper__placeholder.only-4k {
    display: flex;
  }
}
.breadcrumbs-v3 {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.breadcrumbs-v3__item {
  display: inline-flex;
  align-items: center;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 16px;
  color: #fff;
  transition: color 200ms ease-out;
}
.breadcrumbs-v3__item:not(:last-of-type) {
  margin-right: 12px;
}
.breadcrumbs-v3__item:not(:last-of-type)::after {
  content: ">";
  margin-left: 12px;
  color: #fff;
}
.breadcrumbs-v3__item:hover, .breadcrumbs-v3__item:active {
  color: #fedec3;
}

.breadcrumbs-v3__item--home:hover i, .breadcrumbs-v3__item--home:active i {
  color: #fedec3;
}
.breadcrumbs-v3__item--home i {
  transition: color 200ms ease-out;
  color: #fff;
}

.breadcrumbs-v3__item--current {
  font-weight: 500;
}

@media (min-width: 1200px) {
  .breadcrumbs-v3 {
    margin-top: 16px;
  }
  .breadcrumbs-v3__item {
    font-size: 12px;
    line-height: 18px;
  }
  .breadcrumbs-v3__item:not(:last-of-type) {
    margin-right: 17px;
  }
  .breadcrumbs-v3__item:not(:last-of-type)::after {
    right: -12px;
  }
}
@media (min-width: 2560px) {
  .breadcrumbs-v3 {
    margin-top: 12px;
  }
  .breadcrumbs-v3__item {
    font-size: 14px;
    line-height: 20px;
  }
}
.breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item {
  color: #0c00b8 !important;
  cursor: pointer;
}
.breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item:not(:last-of-type)::after {
  color: #120c6e;
}
.breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item:hover, .breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item:active {
  color: #5e72eb !important;
}
.breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item--home {
  min-width: 28px;
}
.breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item--home:hover svg, .breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item--home:active svg {
  fill: #5e72eb;
}
.breadcrumbs-v3-board-page-wrapper .breadcrumbs-v3__item--home svg {
  fill: #120c6e;
}

.tt-landing-breadcrumbs {
  height: 24px;
  display: inline-block;
}
.tt-landing-breadcrumbs a,
.tt-landing-breadcrumbs span {
  display: inline;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 24px;
  color: #120c6e;
}
.tt-landing-breadcrumbs a:hover,
.tt-landing-breadcrumbs span:hover {
  color: #5e72eb;
}
.tt-landing-breadcrumbs span {
  font-weight: 500;
}

@media (min-width: 1200px) {
  .tt-landing-breadcrumbs a,
  .tt-landing-breadcrumbs span {
    font-size: 12px;
  }
}
@media (min-width: 2560px) {
  .tt-landing-breadcrumbs a,
  .tt-landing-breadcrumbs span {
    font-size: 14px;
  }
}
@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.shimmer-placeholder {
  width: 100%;
  min-height: 212px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(196, 196, 196, 0.31);
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  position: relative;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeholderShimmer;
  animation-timing-function: linear;
}

@media (min-width: 1200px) {
  .shimmer-placeholder {
    width: 518px;
    min-height: 210px;
  }
}
@media (min-width: 2560px) {
  .shimmer-placeholder {
    width: 850px;
    min-height: 240px;
  }
}
.homepage-v3-topbar {
  padding: 15px 21px 15px 15px;
  margin-top: 0;
  background: transparent;
  box-shadow: 0 0 0 transparent;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 104;
  transition: margin-top 300ms ease, background 300ms ease, box-shadow 300ms ease;
}
.homepage-v3-topbar.scrolled {
  margin-top: -90px;
}
.homepage-v3-topbar:not(.positioned-in-top) {
  background: #fff;
  box-shadow: rgba(196, 196, 196, 0.31) 0 1px 10px;
}
.homepage-v3-topbar.bg-white {
  background-color: #ffffff;
}

.homepage-v3-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.homepage-v3-topbar__left {
  display: flex;
  align-items: center;
}

.homepage-v3-topbar__logo {
  display: inline-flex;
}
.homepage-v3-topbar__logo img {
  width: 86px;
  height: auto;
}
.homepage-v3-topbar__logo .logo-white {
  display: none;
}

.homepage-v3-topbar__tecnovy-soon {
  margin-left: 12px;
  color: #120c6e;
  font-family: "Raleway";
  font-size: 10px;
  line-height: 16px;
}

.homepage-v3-topbar__buttons {
  display: flex;
}

.homepage-v3-topbar-xl__e-learning-button svg g rect {
  fill: #0a008f;
}

.homepage-v3-topbar__drawer-toggler {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  background: #f9f9f9;
  box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.homepage-v3-topbar__drawer-toggler:focus {
  outline: 0;
}
.homepage-v3-topbar__drawer-toggler svg {
  width: 18px;
  height: 18px;
}
.homepage-v3-topbar__drawer-toggler svg g rect {
  fill: #25539b;
}

.homepage-v3-topbar-xl {
  display: none;
}

@media (min-width: 1024px) {
  .homepage-v3-topbar {
    display: none;
  }
  body[header-menu-on] {
    overflow-y: hidden;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__bottom {
    background: #fff;
    backdrop-filter: unset;
    filter: unset;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__logo .logo-default {
    display: block;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__logo .logo-white {
    display: none;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__navigation-dropdown-item button span {
    color: #18386c;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__navigation-dropdown-item button svg g rect {
    fill: #18386c;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__navigation-dropdown-item:hover button span {
    color: #15d2ad;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__navigation-dropdown-item:hover button svg g rect {
    fill: #15d2ad;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__navigation-item {
    color: #18386c;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__navigation-item:hover {
    color: #15d2ad;
  }
  body[header-menu-on] .tt-header-v2__navs-language {
    opacity: 0.5;
    background: rgba(37, 83, 155, 0.2);
  }
  body[header-menu-on] .homepage-v3-topbar-xl__e-learning-button svg g rect {
    fill: #0a008f;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__e-learning-button span {
    color: #0a008f;
  }
  .homepage-v3-topbar-xl {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 106;
    filter: drop-shadow(0px 4px 16px rgba(53, 53, 53, 0.1));
    backdrop-filter: blur(24px);
    transition: margin-top 300ms ease;
  }
  .homepage-v3-topbar-xl.positioned-in-top {
    margin-top: 0;
    transition: margin-top ease-in-out 500ms;
    z-index: 107;
  }
  .homepage-v3-topbar-xl.scrolled {
    margin-top: -156px;
  }
  .homepage-v3-topbar-xl__top {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffe9d7;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #18386c;
    display: none;
  }
  .homepage-v3-topbar-xl__bottom {
    height: 80px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(32px);
    filter: drop-shadow(0px 4px 16px rgba(53, 53, 53, 0.1));
    transition: height 0.3s ease;
  }
  .homepage-v3-topbar-xl:not(.positioned-in-top) .homepage-v3-topbar-xl__bottom {
    height: 100px;
  }
  .homepage-v3-topbar-xl img.logo-white,
  .homepage-v3-topbar-xl img.logo-default {
    transition: width 0.3s ease;
  }
  .homepage-v3-topbar-xl:not(.positioned-in-top) img.logo-white,
  .homepage-v3-topbar-xl:not(.positioned-in-top) img.logo-default {
    width: 180px !important;
    height: auto !important;
  }
  .homepage-v3-topbar-xl__bottom-inner {
    max-width: 920px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .homepage-v3-topbar-xl__bottom-left {
    display: flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__logo {
    display: inline-flex;
  }
  .homepage-v3-topbar-xl__logo img {
    width: 112px;
    height: auto;
  }
  .homepage-v3-topbar-xl__logo .logo-white {
    display: none;
  }
  .homepage-v3-topbar-xl__tecnovy-soon {
    margin-left: 16px;
    color: #120c6e;
    font-family: "Raleway";
    font-size: 12px;
    line-height: 20px;
  }
  .homepage-v3-topbar-xl__bottom-inner-right {
    width: 695px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigations {
    display: flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigations > *:not(:first-child) {
    margin-left: 28px;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item {
    display: flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button {
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button[on] svg {
    transform: rotate(180deg);
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button:focus {
    outline: 0;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button:hover span {
    color: #15d2ad;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button:hover svg g rect {
    fill: #15d2ad;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button span {
    color: #18386c;
    font-family: "Raleway";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: color 300ms;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button svg {
    width: 6px;
    height: 3px;
    transition: transform 300ms;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button svg g rect {
    fill: #18386c;
    transition: fill 300ms;
  }
  .homepage-v3-topbar-xl__navigation-item {
    color: #18386c;
    font-family: "Raleway";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    transition: color 300ms;
  }
  .homepage-v3-topbar-xl__navigation-item:hover {
    color: #15d2ad;
  }
  .homepage-v3-topbar-xl__buttons {
    display: flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__buttons a {
    display: inline-flex;
  }
  .homepage-v3-topbar-xl__buttons a img {
    width: 22px;
    height: 14px;
  }
  .homepage-v3-topbar-xl__e-learning-button {
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__e-learning-button:focus {
    outline: 0;
  }
  .homepage-v3-topbar-xl__e-learning-button svg {
    width: 12px;
    height: 12px;
  }
  .homepage-v3-topbar-xl__e-learning-button span {
    margin-left: 6px;
    color: #0a008f;
    font-family: "Raleway";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
  }
}
@media (min-width: 1200px) {
  .homepage-v3-topbar-xl.scrolled {
    margin-top: -156px;
  }
  .homepage-v3-topbar-xl__top {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffe9d7;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #18386c;
    display: none;
  }
  .homepage-v3-topbar-xl__bottom {
    height: 120px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(32px);
    filter: drop-shadow(0px 4px 16px rgba(53, 53, 53, 0.1));
  }
  .homepage-v3-topbar-xl__bottom-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .homepage-v3-topbar-xl__logo {
    display: inline-flex;
  }
  .homepage-v3-topbar-xl__logo img {
    width: 141px;
  }
  .homepage-v3-topbar-xl__logo .logo-white {
    display: none;
  }
  .homepage-v3-topbar-xl__tecnovy-soon {
    font-size: 14px;
  }
  .homepage-v3-topbar-xl__tecnovy-soon sup {
    font-size: 11.2px;
  }
  .homepage-v3-topbar-xl__bottom-inner-right {
    width: 1014px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigations {
    display: flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigations > *:not(:first-child) {
    margin-left: 48px;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button {
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button[on] svg {
    transform: rotate(180deg);
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button:focus {
    outline: 0;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button:hover span {
    color: #15d2ad;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button:hover svg g rect {
    fill: #15d2ad;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button span {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0a17a7;
    transition: color 300ms;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button svg {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    transition: transform 300ms;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button svg g rect {
    fill: #0a17a7;
    transition: fill 300ms;
  }
  .homepage-v3-topbar-xl__navigation-item {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0a17a7;
    transition: color 300ms;
  }
  .homepage-v3-topbar-xl__navigation-item:hover {
    color: #15d2ad;
  }
  .homepage-v3-topbar-xl__buttons {
    display: flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__buttons a {
    display: inline-flex;
  }
  .homepage-v3-topbar-xl__buttons a img {
    width: 22px;
    height: 14px;
  }
  .homepage-v3-topbar-xl__e-learning-button {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__e-learning-button:focus {
    outline: 0;
  }
  .homepage-v3-topbar-xl__e-learning-button svg {
    width: 16px;
    height: 16px;
  }
  .homepage-v3-topbar-xl__e-learning-button span {
    margin-left: 8px;
    font-family: "Raleway", Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #0a008f;
  }
}
@media (min-width: 2560px) {
  body[header-menu-on] {
    overflow-y: hidden;
  }
  body[header-menu-on] .homepage-v3-topbar-xl__logo::before {
    background: #fff;
  }
  .homepage-v3-topbar-xl.scrolled {
    margin-top: -192px;
  }
  .homepage-v3-topbar-xl:not(.positioned-in-top) .homepage-v3-topbar-xl__logo {
    display: inline-flex;
    align-items: center;
  }
  .homepage-v3-topbar-xl__top {
    height: 64px;
    font-size: 20px;
    line-height: 32px;
  }
  .homepage-v3-topbar-xl__bottom {
    height: 128px;
  }
  .homepage-v3-topbar-xl__bottom-inner {
    max-width: 1966px;
  }
  .homepage-v3-topbar-xl__logo {
    height: 100%;
    padding-top: 6px;
    position: relative;
    align-items: center;
  }
  .homepage-v3-topbar-xl__logo img {
    width: 211px;
  }
  .homepage-v3-topbar-xl__tecnovy-soon {
    margin-left: 32px;
    font-size: 24px;
    line-height: 32px;
  }
  .homepage-v3-topbar-xl__tecnovy-soon sup {
    font-size: 19.2px;
  }
  .homepage-v3-topbar-xl__bottom-inner-right {
    width: 1420px;
  }
  .homepage-v3-topbar-xl__navigations > *:not(:first-child) {
    margin-left: 72px;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button span {
    font-size: 22px;
    line-height: 32px;
  }
  .homepage-v3-topbar-xl__navigation-dropdown-item button svg {
    width: 26px;
    height: 26px;
    margin-left: 6px;
  }
  .homepage-v3-topbar-xl__navigation-item {
    font-size: 22px;
    line-height: 32px;
  }
  .homepage-v3-topbar-xl__buttons a img {
    width: 32px;
    height: 24px;
  }
  .homepage-v3-topbar-xl__e-learning-button svg {
    width: 24px;
    height: 24px;
  }
  .homepage-v3-topbar-xl__e-learning-button span {
    margin-left: 16px;
    font-size: 22px;
    line-height: 32px;
  }
}
.academy-menu {
  display: none;
}

@media (min-width: 1024px) {
  .academy-menu {
    background: #ffffff;
    backdrop-filter: blur(32px);
    position: fixed;
    top: 120px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 107;
  }
  .homepage-v3-topbar-xl:not(.positioned-in-top) ~ #wrapper-of-menus .academy-menu {
    top: 120px;
  }
  .academy-menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .academy-menu__inner-left {
    width: 950px;
  }
  .academy-menu__inner-left-top {
    height: 536px;
    display: flex;
    justify-content: space-between;
  }
  .academy-menu__inner-left-bottom {
    height: 132px;
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
  }
  .academy-menu__inner-right {
    width: 290px;
  }
}
@media (min-width: 1200px) {
  .academy-menu {
    background: #ffffff;
    backdrop-filter: blur(32px);
    position: fixed;
    top: 120px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 107;
  }
  .homepage-v3-topbar-xl:not(.positioned-in-top) ~ #wrapper-of-menus .academy-menu {
    top: 120px;
  }
  .academy-menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .academy-menu__inner-left {
    width: 950px;
  }
  .academy-menu__inner-left-top {
    height: 536px;
    display: flex;
    justify-content: space-between;
  }
  .academy-menu__inner-left-bottom {
    height: 132px;
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
  }
  .academy-menu__inner-right {
    width: 290px;
  }
}
@media (min-width: 2560px) {
  .academy-menu {
    top: 138px;
  }
  .homepage-v3-topbar-xl:not(.positioned-in-top) ~ #wrapper-of-menus .academy-menu {
    top: 138px;
  }
  .academy-menu__inner {
    max-width: 1880px;
  }
  .academy-menu__inner-left {
    width: 1400px;
  }
  .academy-menu__inner-left-top {
    height: 839px;
  }
  .academy-menu__inner-left-bottom {
    height: 201px;
    margin-top: 63px;
    margin-top: 0;
    justify-content: flex-start;
  }
  .academy-menu__inner-right {
    width: 440px;
  }
}
@media (min-width: 1024px) {
  .academy-menu__section--safe {
    width: 290px;
  }
  .academy-menu__section--safe .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #1aafe8 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--isaqb {
    width: 620px;
  }
  .academy-menu__section--isaqb .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #fc6514 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--isaqb .academy-menu__section-navigations {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .academy-menu__section--isaqb .academy-menu__link {
    width: 50%;
  }
  .academy-menu__section--itil {
    width: 290px;
  }
  .academy-menu__section--itil .academy-menu__section-heading:hover {
    background: linear-gradient(89.37deg, #ffe9d7 39.27%, #cc41cf 229.51%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--uxqb {
    width: 290px;
    margin-left: 40px;
  }
  .academy-menu__section--uxqb .academy-menu__section-heading:hover {
    background: linear-gradient(88.75deg, #ffe9d7 25.01%, #28df99 214.5%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--ireb {
    width: 290px;
  }
  .academy-menu__section--ireb .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #534cda 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--scrum {
    width: 290px;
    margin-top: 40px;
  }
  .academy-menu__section--scrum .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #1aafe8 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section-heading {
    min-height: 72px;
    background: linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
    box-shadow: 0px 4px 12px rgba(18, 12, 110, 0.1);
    border-radius: 4px;
    position: relative;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    transition: background 300ms ease-out, box-shadow 300ms ease-out;
  }
  .academy-menu__section-heading::after {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .academy-menu__section-heading:hover {
    box-shadow: 0px 4px 16px rgba(18, 12, 110, 0.1);
  }
  .academy-menu__section-heading > * {
    position: relative;
    z-index: 1;
  }
  .academy-menu__section-heading img {
    width: auto;
    max-height: 28px;
  }
  .academy-menu__section-heading span {
    margin-left: 16px;
    font-family: "Raleway";
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
  }
  .academy-menu__section-navigations {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }
  .academy-menu__link {
    min-height: 58px;
    padding: 12px;
    background: transparent;
    box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 300ms ease-out, box-shadow 300ms ease-out;
  }
  .academy-menu__link:hover {
    background: #f9f9f9;
    box-shadow: 0px 4px 12px rgba(18, 12, 110, 0.1);
  }
  .academy-menu__link:hover svg {
    display: block;
  }
  .academy-menu__link > div {
    max-width: 257px;
    display: flex;
    flex-direction: column;
  }
  .academy-menu__link > div span {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.04em;
    color: #080742;
  }
  .academy-menu__link > div div {
    margin-top: 4px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.04em;
    color: #080742;
  }
  .academy-menu__link svg {
    display: none;
    width: 18px;
    height: 12px;
  }
  .academy-menu__link svg path {
    fill: #18386c;
  }
  .academy-menu__indie-link {
    width: 290px;
    border-radius: 4px;
    padding: 16px 24px 16px 20px;
    opacity: 0.9;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .academy-menu__indie-link div span {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }
  .academy-menu__indie-link div p {
    margin-top: 8px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
  .academy-menu__indie-link svg {
    width: 14px;
    height: 9.33px;
  }
  .academy-menu__catalog {
    margin-top: 39px;
    background: linear-gradient(84.47deg, #080742 -12.98%, #255299 112.1%), #f9f9f9;
  }
  .academy-menu__catalog div span,
  .academy-menu__catalog div p {
    color: #fedec3;
  }
  .academy-menu__catalog svg path {
    fill: #fedec3;
  }
  .academy-menu__showroom {
    margin-top: 16px;
    background: radial-gradient(118.49% 272.82% at 107.59% -19.27%, rgba(88, 194, 173, 0.85) 5.46%, rgba(88, 194, 173, 0.7) 18.45%, rgba(37, 83, 155, 0.51) 71.13%, rgba(22, 55, 105, 0.51) 100%), radial-gradient(59.97% 83.46% at 104.36% 19.01%, #25539b 0%, #1e4582 27.57%, #120c6e 100%), #f9f9f9;
  }
  .academy-menu__showroom div span,
  .academy-menu__showroom div p {
    color: #fff;
  }
  .academy-menu__showroom svg path {
    fill: #fff;
  }
}
@media (min-width: 1200px) {
  .academy-menu__section--safe {
    width: 290px;
  }
  .academy-menu__section--safe .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #1aafe8 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--isaqb {
    width: 620px;
  }
  .academy-menu__section--isaqb .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #fc6514 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--isaqb .academy-menu__section-navigations {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .academy-menu__section--isaqb .academy-menu__link {
    width: 50%;
  }
  .academy-menu__section--itil {
    width: 290px;
  }
  .academy-menu__section--itil .academy-menu__section-heading:hover {
    background: linear-gradient(89.37deg, #ffe9d7 39.27%, #cc41cf 229.51%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--uxqb {
    width: 290px;
    margin-left: 40px;
  }
  .academy-menu__section--uxqb .academy-menu__section-heading:hover {
    background: linear-gradient(88.75deg, #ffe9d7 25.01%, #28df99 214.5%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--ireb {
    width: 290px;
  }
  .academy-menu__section--ireb .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #534cda 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section--scrum {
    width: 290px;
    margin-top: 40px;
  }
  .academy-menu__section--scrum .academy-menu__section-heading:hover {
    background: linear-gradient(89.47deg, #ffe9d7 24.84%, #1aafe8 156.3%), linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
  }
  .academy-menu__section-heading {
    min-height: 72px;
    background: linear-gradient(86.33deg, #fedec3 -12.22%, #f2f2f2 203.46%);
    box-shadow: 0px 4px 12px rgba(18, 12, 110, 0.1);
    border-radius: 4px;
    position: relative;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    transition: background 300ms ease-out, box-shadow 300ms ease-out;
  }
  .academy-menu__section-heading::after {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .academy-menu__section-heading:hover {
    box-shadow: 0px 4px 16px rgba(18, 12, 110, 0.1);
  }
  .academy-menu__section-heading > * {
    position: relative;
    z-index: 1;
  }
  .academy-menu__section-heading img {
    width: auto;
    max-height: 28px;
  }
  .academy-menu__section-heading span {
    margin-left: 16px;
    font-family: "Raleway";
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
  }
  .academy-menu__section-navigations {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }
  .academy-menu__link {
    min-height: 58px;
    padding: 12px;
    background: transparent;
    box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 300ms ease-out, box-shadow 300ms ease-out;
  }
  .academy-menu__link:hover {
    background: #f9f9f9;
    box-shadow: 0px 4px 12px rgba(18, 12, 110, 0.1);
  }
  .academy-menu__link:hover svg {
    display: block;
  }
  .academy-menu__link > div {
    max-width: 257px;
    display: flex;
    flex-direction: column;
  }
  .academy-menu__link > div span {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.04em;
    color: #080742;
  }
  .academy-menu__link > div div {
    margin-top: 4px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.04em;
    color: #080742;
  }
  .academy-menu__link svg {
    display: none;
    width: 18px;
    height: 12px;
  }
  .academy-menu__link svg path {
    fill: #18386c;
  }
  .academy-menu__indie-link {
    width: 290px;
    border-radius: 4px;
    padding: 16px 24px 16px 20px;
    opacity: 0.9;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .academy-menu__indie-link div span {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
  }
  .academy-menu__indie-link div p {
    margin-top: 8px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
  .academy-menu__indie-link svg {
    width: 14px;
    height: 9.33px;
  }
  .academy-menu__catalog {
    margin-top: 39px;
    background: linear-gradient(84.47deg, #080742 -12.98%, #255299 112.1%), #f9f9f9;
  }
  .academy-menu__catalog div span,
  .academy-menu__catalog div p {
    color: #fedec3;
  }
  .academy-menu__catalog svg path {
    fill: #fedec3;
  }
  .academy-menu__showroom {
    margin-top: 16px;
    background: radial-gradient(118.49% 272.82% at 107.59% -19.27%, rgba(88, 194, 173, 0.85) 5.46%, rgba(88, 194, 173, 0.7) 18.45%, rgba(37, 83, 155, 0.51) 71.13%, rgba(22, 55, 105, 0.51) 100%), radial-gradient(59.97% 83.46% at 104.36% 19.01%, #25539b 0%, #1e4582 27.57%, #120c6e 100%), #f9f9f9;
  }
  .academy-menu__showroom div span,
  .academy-menu__showroom div p {
    color: #fff;
  }
  .academy-menu__showroom svg path {
    fill: #fff;
  }
}
@media (min-width: 2560px) {
  .academy-menu__section--safe {
    width: 440px;
  }
  .academy-menu__section--isaqb {
    width: 920px;
  }
  .academy-menu__section--itil {
    width: 440px;
  }
  .academy-menu__section--uxqb {
    width: 440px;
  }
  .academy-menu__section--ireb {
    width: 440px;
  }
  .academy-menu__section--scrum {
    width: 440px;
    margin-top: 80px;
  }
  .academy-menu__section-heading {
    min-height: 104px;
    padding: 22px 24px;
  }
  .academy-menu__section-heading div {
    width: 60px;
    height: 60px;
  }
  .academy-menu__section-heading span {
    margin-left: 24px;
    font-size: 18px;
    line-height: 24px;
  }
  .academy-menu__section-navigations {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }
  .academy-menu__link {
    min-height: 85px;
    padding: 8px 24px 16px 8px;
  }
  .academy-menu__link > div {
    max-width: 404px;
  }
  .academy-menu__link > div span {
    font-size: 18px;
    line-height: 21px;
  }
  .academy-menu__link > div div {
    font-size: 22px;
    line-height: 28px;
  }
  .academy-menu__indie-link {
    width: 440px;
    border-radius: 8px;
    padding: 32px 32px 40px 32px;
  }
  .academy-menu__indie-link div span {
    font-size: 24px;
    line-height: 32px;
  }
  .academy-menu__indie-link div p {
    margin-top: 12px;
    font-size: 18px;
    line-height: 24px;
  }
  .academy-menu__indie-link svg {
    width: 24px;
    height: 16px;
  }
  .academy-menu__catalog {
    margin-top: 80px;
  }
  .academy-menu__showroom {
    margin-top: 24px;
  }
}
.enterprise-menu {
  display: none;
}

@media (min-width: 1024px) {
  .enterprise-menu {
    height: 555px;
    background: #ffffff;
    backdrop-filter: blur(32px);
    position: fixed;
    top: 120px;
    right: 0;
    left: 0;
    z-index: 107;
  }
  .homepage-v3-topbar-xl.positioned-in-top ~ #wrapper-of-menus .enterprise-menu {
    top: 80px;
  }
  .enterprise-menu__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .enterprise-menu__see-all {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
  }
  .enterprise-menu__see-all span {
    margin-right: 8px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #080742;
  }
  .enterprise-menu__see-all svg {
    width: 12px;
    height: 12px;
  }
  .enterprise-menu__see-all svg path {
    fill: #080742;
  }
  .enterprise-menu__list {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
  }
  .enterprise-menu__item {
    width: 240px;
    height: 475px;
    display: block;
    background-image: var(--img-src);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    position: relative;
  }
  .enterprise-menu__item:hover .enterprise-menu__item-inner {
    top: 0;
  }
  .enterprise-menu__item:hover .enterprise-menu__item-content::after {
    display: block;
  }
  .enterprise-menu__item.dl .enterprise-menu__item-content::before {
    background: linear-gradient(167.79deg, #5e72eb -14.45%, #fdc094 102.32%);
    opacity: 0.8;
    backdrop-filter: blur(4px);
  }
  .enterprise-menu__item.it .enterprise-menu__item-content::before {
    background: linear-gradient(167.79deg, #120c6e -14.45%, #fdc094 102.32%);
    opacity: 0.85;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.ds .enterprise-menu__item-content::before {
    background: linear-gradient(164.76deg, #15d2ad -59.55%, #fdc094 102.72%);
    opacity: 0.9;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.ss .enterprise-menu__item-content::before {
    background: linear-gradient(164.76deg, #25539b -17.87%, #fdc094 107.31%);
    opacity: 0.85;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.cs .enterprise-menu__item-content::before {
    background: linear-gradient(168.22deg, #080742 -11.93%, #fdc094 115.24%);
    opacity: 0.9;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item-inner {
    position: absolute;
    top: 227px;
    right: 0;
    bottom: 0;
    left: 0;
    transition: top 100ms ease-out;
  }
  .enterprise-menu__item-content {
    height: 100%;
    padding: 32px 25px 24px 16px;
    position: relative;
  }
  .enterprise-menu__item-content::before {
    content: "";
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .enterprise-menu__item-content::after {
    display: none;
    content: "Coming Soon";
    position: absolute;
    right: 20px;
    bottom: 32px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
  }
  .enterprise-menu__item-content > * {
    position: relative;
    z-index: 1;
  }
  .enterprise-menu__item-title {
    margin: 0;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700 !important;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
  }
  .enterprise-menu__item-desc {
    margin-top: 16px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
  }
  .enterprise-menu__item-text {
    margin-top: 12px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
  }
  .enterprise-menu__item-text * {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }
}
@media (min-width: 1200px) {
  .enterprise-menu {
    height: 555px;
    background: #ffffff;
    backdrop-filter: blur(32px);
    position: fixed;
    top: 120px;
    right: 0;
    left: 0;
    z-index: 107;
  }
  .homepage-v3-topbar-xl.positioned-in-top ~ #wrapper-of-menus .enterprise-menu {
    top: 120px;
  }
  .enterprise-menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .enterprise-menu__see-all {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
  }
  .enterprise-menu__see-all span {
    margin-right: 8px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #080742;
  }
  .enterprise-menu__see-all svg {
    width: 12px;
    height: 12px;
  }
  .enterprise-menu__see-all svg path {
    fill: #080742;
  }
  .enterprise-menu__list {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
  }
  .enterprise-menu__item {
    width: 240px;
    height: 475px;
    display: block;
    background-image: var(--img-src);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    position: relative;
  }
  .enterprise-menu__item:hover .enterprise-menu__item-inner {
    top: 0;
  }
  .enterprise-menu__item:hover .enterprise-menu__item-content::after {
    display: block;
  }
  .enterprise-menu__item.dl .enterprise-menu__item-content::before {
    background: linear-gradient(167.79deg, #5e72eb -14.45%, #fdc094 102.32%);
    opacity: 0.8;
    backdrop-filter: blur(4px);
  }
  .enterprise-menu__item.it .enterprise-menu__item-content::before {
    background: linear-gradient(167.79deg, #120c6e -14.45%, #fdc094 102.32%);
    opacity: 0.85;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.ds .enterprise-menu__item-content::before {
    background: linear-gradient(164.76deg, #15d2ad -59.55%, #fdc094 102.72%);
    opacity: 0.9;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.ss .enterprise-menu__item-content::before {
    background: linear-gradient(164.76deg, #25539b -17.87%, #fdc094 107.31%);
    opacity: 0.85;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.cs .enterprise-menu__item-content::before {
    background: linear-gradient(168.22deg, #080742 -11.93%, #fdc094 115.24%);
    opacity: 0.9;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item-inner {
    position: absolute;
    top: 227px;
    right: 0;
    bottom: 0;
    left: 0;
    transition: top 100ms ease-out;
  }
  .enterprise-menu__item-content {
    height: 100%;
    padding: 32px 25px 24px 16px;
    position: relative;
  }
  .enterprise-menu__item-content::before {
    content: "";
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .enterprise-menu__item-content::after {
    display: none;
    content: "Coming Soon";
    position: absolute;
    right: 20px;
    bottom: 32px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
  }
  .enterprise-menu__item-content > * {
    position: relative;
    z-index: 1;
  }
  .enterprise-menu__item-title {
    margin: 0;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700 !important;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
  }
  .enterprise-menu__item-desc {
    margin-top: 16px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
  }
  .enterprise-menu__item-text {
    margin-top: 12px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
  }
  .enterprise-menu__item-text * {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }
}
@media (min-width: 2560px) {
  .enterprise-menu {
    height: 635px;
    backdrop-filter: blur(24px);
    top: 138px;
  }
  .homepage-v3-topbar-xl.positioned-in-top ~ #wrapper-of-menus .enterprise-menu {
    top: 138px;
  }
  .enterprise-menu__inner {
    max-width: 1920px;
  }
  .enterprise-menu__see-all span {
    margin-right: 16px;
    font-size: 22px;
    line-height: 28px;
  }
  .enterprise-menu__see-all svg {
    width: 18px;
    height: 18px;
  }
  .enterprise-menu__list {
    margin-top: 32px;
  }
  .enterprise-menu__item {
    width: 352px;
    height: 475px;
    background-position: center;
  }
  .enterprise-menu__item.dl .enterprise-menu__item-content::before {
    opacity: 0.9;
    backdrop-filter: blur(6px);
  }
  .enterprise-menu__item.ds .enterprise-menu__item-content::before {
    opacity: 0.8;
  }
  .enterprise-menu__item-content {
    padding: 36px 40px 36px 24px;
  }
  .enterprise-menu__item-content::before {
    content: "";
    border-radius: 8px;
  }
  .enterprise-menu__item-title {
    font-size: 30px;
    line-height: 36px;
  }
  .enterprise-menu__item-desc {
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
  }
  .enterprise-menu__item-text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
  }
}
.homepage-v3-topbar-xl-overlay {
  display: none;
}

@media (min-width: 1024px) {
  .homepage-v3-topbar-xl-overlay {
    background: #080742;
    opacity: 0.55;
    backdrop-filter: blur(32px);
    position: fixed;
    top: 120px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 103;
  }
  .homepage-v3-topbar-xl.positioned-in-top .homepage-v3-topbar-xl-overlay {
    top: 156px;
  }
  body[header-menu-on] .homepage-v3-topbar-xl-overlay {
    display: block;
  }
}
@media (min-width: 1200px) {
  .homepage-v3-topbar-xl-overlay {
    background: #080742;
    opacity: 0.55;
    backdrop-filter: blur(32px);
    position: fixed;
    top: 120px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 103;
  }
  .homepage-v3-topbar-xl.positioned-in-top .homepage-v3-topbar-xl-overlay {
    top: 156px;
  }
  body[header-menu-on] .homepage-v3-topbar-xl-overlay {
    display: block;
  }
}
@media (min-width: 2560px) {
  .homepage-v3-topbar-xl-overlay {
    top: 138px;
  }
  .homepage-v3-topbar-xl.positioned-in-top .homepage-v3-topbar-xl-overlay {
    top: 202px;
  }
  body[header-menu-on] .homepage-v3-topbar-xl-overlay {
    display: block;
  }
}
@media (min-width: 1024px) {
  .header-v3-lang {
    position: relative;
  }
  .header-v3-lang:hover .header-v3-lang__current {
    background: #ffffff;
  }
  .header-v3-lang__current {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 200ms ease-out;
  }
  .header-v3-lang__current img {
    width: 26px;
    height: 18px;
  }
  .header-v3-lang-dropdown {
    width: 200px;
    height: 220px;
    padding-top: 60px;
    border-radius: 22px;
    position: absolute;
    opacity: 0;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 200ms ease-out;
    display: none;
  }
  .header-v3-lang-dropdown.visible {
    opacity: 1;
  }
  .header-v3-lang-dropdown__inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #ffe9d7;
    box-shadow: 0px 0px 16px rgba(150, 150, 150, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .header-v3-lang-dropdown__inner::before {
    content: "";
    border-width: 0 24px 40px;
    border-style: solid;
    border-color: transparent transparent #ffe9d7 transparent;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-v3-lang-dropdown__inner > :first-child {
    border-radius: 16px 16px 0px 0px;
  }
  .header-v3-lang-dropdown__inner > :last-child {
    border-radius: 0px 0px 16px 16px;
  }
  .header-v3-lang-dropdown__item {
    width: 184px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 50ms ease-out;
  }
  .header-v3-lang-dropdown__item:hover {
    background: #ffffff;
  }
  .header-v3-lang-dropdown__item img {
    width: 26px;
    height: 18px;
  }
  .header-v3-lang-dropdown__item span {
    margin-left: 12px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 40px;
    color: #120c6e;
  }
}
@media (min-width: 1200px) {
  .header-v3-lang {
    position: relative;
  }
  .header-v3-lang:hover .header-v3-lang__current {
    background: #ffffff;
  }
  .header-v3-lang__current {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 200ms ease-out;
  }
  .header-v3-lang__current img {
    width: 26px;
    height: 18px;
  }
  .header-v3-lang-dropdown {
    width: 200px;
    height: 220px;
    padding-top: 60px;
    border-radius: 22px;
    position: absolute;
    opacity: 0;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 200ms ease-out;
    display: none;
  }
  .header-v3-lang-dropdown.visible {
    opacity: 1;
  }
  .header-v3-lang-dropdown__inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #ffe9d7;
    box-shadow: 0px 0px 16px rgba(150, 150, 150, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .header-v3-lang-dropdown__inner::before {
    content: "";
    border-width: 0 24px 40px;
    border-style: solid;
    border-color: transparent transparent #ffe9d7 transparent;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-v3-lang-dropdown__inner > :first-child {
    border-radius: 16px 16px 0px 0px;
  }
  .header-v3-lang-dropdown__inner > :last-child {
    border-radius: 0px 0px 16px 16px;
  }
  .header-v3-lang-dropdown__item {
    width: 184px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 50ms ease-out;
  }
  .header-v3-lang-dropdown__item:hover {
    background: #ffffff;
  }
  .header-v3-lang-dropdown__item img {
    width: 26px;
    height: 18px;
  }
  .header-v3-lang-dropdown__item span {
    margin-left: 12px;
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 40px;
    color: #120c6e;
  }
}
@media (min-width: 1024px) {
  .header-v3-user-menu {
    position: relative;
  }
  .header-v3-user-menu:hover .header-v3-lang__current {
    background: #ffffff;
  }
  .header-v3-user-menu svg g rect {
    fill: #18386c;
  }
  .header-v3-user-menu__current {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 200ms ease-out;
  }
  .header-v3-user-menu__current svg {
    width: 18px;
    height: 18px;
  }
  .header-v3-user-menu-dropdown {
    width: 390px;
    /*height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;*/
    padding-top: 60px;
    border-radius: 22px;
    position: absolute;
    opacity: 0;
    top: 48px;
    -webkit-transform: translateX(-68%);
    -ms-transform: translateX(-68%);
    transform: translateX(-68%);
    -webkit-transition: opacity 200ms ease-out;
    -o-transition: opacity 200ms ease-out;
    transition: opacity 200ms ease-out;
    display: none;
  }
  .header-v3-user-menu-dropdown.visible {
    opacity: 1;
  }
  .header-v3-user-menu-dropdown__inner {
    padding: 10px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #ffe9d7;
    -webkit-box-shadow: 0 0 16px rgba(150, 150, 150, 0.15);
    box-shadow: 0 0 16px rgba(150, 150, 150, 0.15);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    position: relative;
  }
  .header-v3-user-menu-dropdown__inner::before {
    content: "";
    border-width: 0 24px 40px;
    border-style: solid;
    border-color: transparent transparent #ffe9d7 transparent;
    position: absolute;
    top: -40px;
    right: 52px;
    transform: translateX(-50%);
  }
  .header-v3-user-menu-dropdown__inner > a {
    border-radius: 16px;
  }
  .header-v3-user-menu-dropdown__inner > :last-child {
    grid-column: 1/span 2;
  }
  .header-v3-user-menu-dropdown__item {
    width: 100%;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: background 50ms ease-out;
    -o-transition: background 50ms ease-out;
    transition: background 50ms ease-out;
  }
  .header-v3-user-menu-dropdown__item:last-of-type > span {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-decoration-line: underline !important;
  }
  .header-v3-user-menu-dropdown__item:hover {
    background: #ffffff;
  }
  .header-v3-user-menu-dropdown__item span {
    font-family: "Raleway", serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 40px;
    color: #120c6e;
  }
}
@media (min-width: 1200px) {
  .header-v3-user-menu {
    position: relative;
  }
  .header-v3-user-menu:hover .header-v3-lang__current {
    background: #ffffff;
  }
  .header-v3-user-menu svg g rect {
    fill: #18386c;
  }
  .header-v3-user-menu__current {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 200ms ease-out;
  }
  .header-v3-user-menu__current svg {
    width: 18px;
    height: 18px;
  }
  .header-v3-user-menu-dropdown {
    width: 390px;
    /*height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;*/
    padding-top: 60px;
    border-radius: 22px;
    position: absolute;
    opacity: 0;
    top: 48px;
    -webkit-transform: translateX(-68%);
    -ms-transform: translateX(-68%);
    transform: translateX(-68%);
    -webkit-transition: opacity 200ms ease-out;
    -o-transition: opacity 200ms ease-out;
    transition: opacity 200ms ease-out;
    display: none;
  }
  .header-v3-user-menu-dropdown.visible {
    opacity: 1;
  }
  .header-v3-user-menu-dropdown__inner {
    padding: 10px;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #ffe9d7;
    -webkit-box-shadow: 0 0 16px rgba(150, 150, 150, 0.15);
    box-shadow: 0 0 16px rgba(150, 150, 150, 0.15);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    position: relative;
  }
  .header-v3-user-menu-dropdown__inner::before {
    content: "";
    border-width: 0 24px 40px;
    border-style: solid;
    border-color: transparent transparent #ffe9d7 transparent;
    position: absolute;
    top: -40px;
    right: 52px;
    transform: translateX(-50%);
  }
  .header-v3-user-menu-dropdown__inner > a {
    border-radius: 16px;
  }
  .header-v3-user-menu-dropdown__inner > :last-child {
    grid-column: 1/span 2;
  }
  .header-v3-user-menu-dropdown__item {
    width: 100%;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: background 50ms ease-out;
    -o-transition: background 50ms ease-out;
    transition: background 50ms ease-out;
  }
  .header-v3-user-menu-dropdown__item:last-of-type > span {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-decoration-line: underline !important;
  }
  .header-v3-user-menu-dropdown__item:hover {
    background: #ffffff;
  }
  .header-v3-user-menu-dropdown__item span {
    font-family: "Raleway", serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 40px;
    color: #120c6e;
  }
}
@media (min-width: 2560px) {
  .header-v3-user-menu__current svg {
    width: 24px;
    height: 24px;
  }
}
.amv2 {
  display: none;
}

@media (min-width: 1024px) {
  body[lang-menu-on] .amv2 {
    z-index: 106;
  }
  /* Commons */
  .tt-txt-25539b {
    color: #0a008f;
    font-family: "Raleway";
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
  }
  .tt-txt-080742 {
    color: #00001c;
    font-family: "Raleway";
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 9.5px;
  }
  .tt-txt-080742 * {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
  .tt-txt-080742--2 {
    color: #00001c;
    font-family: "Raleway";
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: 11px; /* 100% */
  }
  /* END - Commons */
  .amv2 {
    display: none;
    justify-content: center;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 108;
    transition: z-index 200ms ease-out;
  }
  .amv2.show .amv2__inner {
    opacity: 1;
    transform: translateY(0);
  }
  .amv2__inner {
    width: 928px;
    height: 504px;
    border-radius: 12px;
    background: #ffe9d7;
    box-shadow: 0px 0px 16px 0px rgba(150, 150, 150, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 300ms ease-out, transform 300ms ease-out;
  }
  .amv2-tabbar {
    padding: 0 24px;
    display: flex;
    background: #fff7ee;
    box-shadow: 0px 4px 12px 0px rgba(28, 28, 28, 0.1);
    position: relative;
    z-index: 1;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 24px;
  }
  .amv2-tabbar-button {
    padding: 18px 0;
    border: 0;
    background: transparent;
    position: relative;
  }
  .amv2-tabbar-button::after {
    content: "";
    height: 1.5px;
    background: transparent;
    transition: background 300ms ease-out, color 300ms ease-out;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .amv2-tabbar-button.selected, .amv2-tabbar-button:hover {
    color: #00001c;
  }
  .amv2-tabbar-button.selected::after, .amv2-tabbar-button:hover::after {
    background: #00001c;
  }
  .amv2__content-container {
    flex: 1;
    background: #fff;
    display: flex;
    opacity: 1;
    transform: translateY(0);
    transition: transform 300ms ease-out, opacity 300ms ease-out;
  }
  .amv2-v-tabbar {
    width: 184px;
    height: 456px;
    overflow: auto;
    background: #ffecd6;
    scrollbar-width: none;
  }
  .amv2-v-tabbar::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .amv2-v-tabbar-button {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border: 0;
    background: transparent;
    display: block;
    text-align: left;
    color: #0a008f;
    transition: background 300ms ease-out, box-shadow 300ms ease-out;
    box-shadow: 0 0 5px 0 rgba(0, 0, 28, 0);
  }
  .amv2-v-tabbar-button.selected, .amv2-v-tabbar-button:hover {
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 28, 0.15);
  }
  .amv2-v-tabbar-button--aisuite {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700 !important;
    color: #080742 !important;
    border-left: 3px solid #15D2AD;
    transition: background 0.5s ease-in-out, color 0.4s, border-color 0.4s;
  }
  .amv2-v-tabbar-button--aisuite:hover {
    background: linear-gradient(135deg, rgba(8, 7, 66, 0.9), rgba(12, 0, 184, 0.85)) !important;
    color: #fff !important;
    border-left-color: transparent;
    box-shadow: none !important;
  }
  .amv2-v-tabbar-button--aisuite.selected {
    background: linear-gradient(135deg, #080742, #0C00B8) !important;
    color: #fff !important;
    border-left-color: transparent;
    box-shadow: none !important;
  }
  .amv2-v-tabbar-button--aisuite:hover .amv2-chip-new, .amv2-v-tabbar-button--aisuite.selected .amv2-chip-new {
    background: #15D2AD;
  }
  .amv2-content--aisuite .amv2-section--aisuite {
    margin-bottom: 20px;
  }
  .amv2-content--aisuite .amv2-section__title--aisuite {
    color: #00001c;
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .amv2-chip-new {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    background: #15D2AD;
    color: #00001C;
    line-height: 1.4;
  }
  .amv2-content {
    width: 744px;
    height: 456px;
    padding: 30px 15px 30px 30px;
    overflow: auto;
    display: none;
    position: relative;
    scrollbar-width: none;
  }
  .amv2-content.active {
    display: block;
  }
  .amv2-content::-webkit-scrollbar {
    width: 0;
  }
  .amv2-content__scrollbar {
    width: 3px;
    border-radius: 1.5px;
    background: #e5e6ec;
    position: fixed;
    top: 40px;
    right: 12px;
    bottom: 40px;
    overflow: hidden;
    visibility: hidden;
  }
  .amv2-content__scrollbar.active {
    visibility: visible;
  }
  .amv2-content__scrollbar div {
    width: 100%;
    background: var(--bg-peach, #fdc094);
    position: relative;
    top: 0;
  }
  .amv2-content-header {
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
  }
  .amv2-content-header__title {
    color: #00001c;
    font-family: "Raleway";
    font-size: 18px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 20px;
  }
  .amv2-content-header__link {
    margin-top: 12px;
    display: inline-flex;
  }
  .amv2-content-header__link:hover span, .amv2-content-header__link:active span {
    color: #15d2ad;
  }
  .amv2-content-header__link:hover svg path, .amv2-content-header__link:active svg path {
    fill: #15d2ad;
  }
  .amv2-content-header__link span {
    margin-right: 6px;
    color: #0a008f;
    font-family: "Raleway";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    transition: color 300ms ease-out;
  }
  .amv2-content-header__link svg {
    width: 9px;
    height: 9px;
    margin-top: 1px;
  }
  .amv2-content-header__link svg path {
    fill: #0a008f;
    transition: fill 300ms ease-out;
  }
  .amv2-content-header__logo {
    width: auto;
    height: auto;
    max-width: 144px;
    max-height: 54px;
  }
  .amv2-section {
    margin-top: 30px;
  }
  .amv2-section__title {
    color: var(--main-violet, #080742);
    font-family: "Raleway";
    font-size: 15px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 15px; /* 100% */
  }
  .amv2-section__list {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 18px;
  }
  .amv2-card {
    border-radius: 2px;
    background: #fff;
    box-shadow: 0px 4px 12px 0px rgba(203, 203, 203, 0.25);
    display: inline-flex;
    align-items: center;
  }
  .amv2-section-item {
    width: 212px;
    transition: background 200ms ease-in-out, box-shadow 200ms ease-in-out;
  }
  .amv2-section-item svg {
    width: 9px;
    height: 9px;
    transition: margin-right 100ms ease;
  }
  .amv2-section-item svg path {
    fill: #00001c;
  }
  .amv2-section-item:hover, .amv2-section-item:active {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1294117647);
    background: #fbfbfb;
  }
  .amv2-section-item:hover svg, .amv2-section-item:active svg {
    margin-right: -5px;
  }
  .amv2-section-item--course {
    min-height: 42px;
    padding: 9px 12px 9px 6px;
  }
  .amv2-section-item--feature {
    padding: 9px 12px;
    background: radial-gradient(378.14% 213.76% at 167.09% 7.96%, #000 0%, #0c00b8 100%), #fff;
  }
  .amv2-section-item--feature .tt-txt-080742--2,
  .amv2-section-item--feature .tt-txt-080742 {
    color: #fff;
  }
  .amv2-section-item--feature svg path {
    fill: #fff;
  }
  .amv2-section-item--feature:hover, .amv2-section-item--feature:active {
    background: radial-gradient(378.14% 213.76% at 167.09% 7.96%, #000 0%, #0c00b8 100%), #fff;
  }
  .amv2-section-item__content--course {
    flex: 1;
    padding: 0 12px;
  }
  .amv2-section-item__content--course h4 {
    font-weight: 400 !important;
  }
  .amv2-section-item__content--course p {
    margin-top: 6px;
  }
  .amv2-section-item__content--feature {
    flex: 1;
  }
  .amv2-section-item__content--feature h4 {
    font-weight: 600 !important;
  }
  .amv2-section-item__content--feature div {
    max-width: 126px;
    margin-top: 6px;
  }
  .amv2-section-item__logo {
    width: auto;
    height: auto;
    max-width: 24px;
    max-height: 24px;
  }
  .amv2__dropdown-arrow {
    width: 28px;
    height: 24px;
    position: absolute;
    top: -23px;
    left: 238px;
    z-index: 108;
    filter: drop-shadow(0px -8px 8px rgba(0, 0, 28, 0.15));
  }
  .amv2__dropdown-arrow svg path {
    fill: #fff7ee;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 236px);
    color: #000;
    font-family: "Raleway";
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .amv2__foundation-item-desc strong,
  .amv2__foundation-item-desc b {
    font-weight: 600;
  }
}
@media (min-width: 1440px) {
  /* Commons */
  .tt-txt-25539b {
    font-size: 16px;
    line-height: 16px;
  }
  .tt-txt-080742 {
    font-size: 10px;
    line-height: 11.5px;
  }
  .tt-txt-080742--2 {
    font-size: 12px;
    line-height: 13.5px;
  }
  /* END - Commons */
  .amv2 {
    top: 112px;
  }
  .amv2__inner {
    width: 1260px;
    height: 672px;
    max-height: calc(100vh - 156px);
    overflow: auto;
    border-radius: 16px;
    background: #ffe9d7;
  }
  .amv2__inner::-webkit-scrollbar {
    width: 0;
  }
  .amv2-tabbar {
    padding: 0 32px;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 32px;
  }
  .amv2-tabbar-button {
    padding: 24px 0;
  }
  .amv2-v-tabbar {
    width: 252px;
    height: 608px;
  }
  .amv2-v-tabbar-button {
    height: 64px;
    padding: 0 32px;
  }
  .amv2-content {
    width: 1008px;
    height: 608px;
    padding: 40px 20px 40px 40px;
  }
  .amv2-content__scrollbar {
    width: 4px;
    border-radius: 2px;
    right: 16px;
  }
  .amv2-content-header {
    padding-right: 20px;
  }
  .amv2-content-header__title {
    font-size: 24px;
    line-height: 28px;
  }
  .amv2-content-header__link {
    margin-top: 16px;
  }
  .amv2-content-header__link span {
    margin-right: 12px;
    font-size: 16px;
    line-height: 16px;
  }
  .amv2-content-header__link svg {
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }
  .amv2-content-header__logo {
    max-width: 192px;
    max-height: 72px;
  }
  .amv2-section {
    margin-top: 40px;
  }
  .amv2-section__title {
    font-size: 20px;
    line-height: 20px;
  }
  .amv2-section__list {
    margin-top: 24px;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 32px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 24px;
  }
  .amv2-section__list.amv2-section__list--foundation {
    align-items: center;
  }
  .amv2-card {
    border-radius: 4px;
  }
  .amv2-section-item {
    width: 288px;
  }
  .amv2-section-item svg {
    width: 12px;
    height: 12px;
  }
  .amv2-section-item--course {
    min-height: 56px;
    padding: 12px 16px 12px 8px;
  }
  .amv2-section-item--feature {
    padding: 12px 16px;
  }
  .amv2-section-item__content--course {
    padding: 0 16px 0 12px;
  }
  .amv2-section-item__content--course p {
    margin-top: 4px;
  }
  .amv2-section-item__content--feature div {
    max-width: initial;
    margin-top: 8px;
  }
  .amv2-section-item__logo {
    max-width: 32px;
    max-height: 32px;
  }
  .amv2__dropdown-arrow {
    left: 280px;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 320px);
  }
}
@media (min-width: 1920px) {
  /* Commons */
  .tt-txt-25539b {
    font-size: 20px;
    line-height: 20px;
  }
  .tt-txt-080742 {
    font-size: 12px;
    line-height: 15px;
  }
  .tt-txt-080742--2 {
    font-size: 16px;
    line-height: 19px;
  }
  /* END - Commons */
  .amv2 {
    top: 120px;
  }
  .amv2__inner {
    width: 1680px;
    height: 84vh;
    border-radius: 20px;
    overflow: hidden;
  }
  .amv2-tabbar {
    padding: 0 40px;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 40px;
  }
  .amv2-tabbar-button {
    padding: 30px 0;
  }
  .amv2-v-tabbar {
    width: 336px;
    height: 76.6vh;
  }
  .amv2-v-tabbar-button {
    height: 80px;
    padding: 0 40px;
  }
  .amv2-content {
    width: 1344px;
    height: 76.6vh;
    padding: 50px 25px 50px 50px;
  }
  .amv2-content__scrollbar {
    width: 5px;
    border-radius: 2.5px;
    right: 20px;
  }
  .amv2-content-header {
    padding-right: 25px;
  }
  .amv2-content-header__title {
    font-size: 30px;
    line-height: 34px;
  }
  .amv2-content-header__link {
    margin-top: 30px;
  }
  .amv2-content-header__link span {
    margin-right: 16px;
    font-size: 20px;
    line-height: 20px;
  }
  .amv2-content-header__link svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
  .amv2-content-header__logo {
    max-width: 240px;
    max-height: 96px;
  }
  .amv2-section {
    margin-top: 50px;
  }
  .amv2-section__title {
    font-size: 24px;
    line-height: 24px;
  }
  .amv2-section__list {
    margin-top: 30px;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 40px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 30px;
  }
  .amv2-section-item {
    width: 388px;
  }
  .amv2-section-item svg {
    width: 16px;
    height: 16px;
  }
  .amv2-section-item--course {
    min-height: 70px;
    padding: 15px 20px 15px 10px;
  }
  .amv2-section-item--feature {
    padding: 15px 20px 16px;
  }
  .amv2-section-item__content--course {
    padding: 1px 20px 1px 15px;
  }
  .amv2-section-item__content--course p {
    margin-top: 10px;
  }
  .amv2-section-item__content--feature div {
    margin-top: 14px;
  }
  .amv2-section-item__logo {
    max-width: 40px;
    max-height: 40px;
  }
  .amv2__dropdown-arrow {
    left: 492px;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 428px);
    font-size: 16px;
    line-height: 18px;
  }
}
@media (min-width: 2560px) {
  /* Commons */
  .tt-txt-25539b {
    font-size: 24px;
    line-height: 24px;
  }
  .tt-txt-080742 {
    font-size: 14px;
    line-height: 17px;
  }
  .tt-txt-080742--2 {
    font-size: 20px;
    line-height: 22px;
  }
  /* END - Commons */
  .amv2 {
    top: 132px;
  }
  .amv2__inner {
    width: 1920px;
    height: 1008px;
    border-radius: 24px;
  }
  .amv2-tabbar {
    padding: 0 48px;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 48px;
  }
  .amv2-tabbar-button {
    padding: 36px 0;
  }
  .amv2-v-tabbar {
    width: 384px;
    height: 912px;
  }
  .amv2-v-tabbar-button {
    height: 96px;
    padding: 0 48px;
  }
  .amv2-content {
    width: 1536px;
    height: 912px;
    padding: 60px 30px 60px 60px;
  }
  .amv2-content__scrollbar {
    width: 6px;
    border-radius: 3px;
    top: 60px;
    right: 24px;
    bottom: 60px;
  }
  .amv2-content-header {
    padding-right: 30px;
  }
  .amv2-content-header__title {
    font-size: 36px;
    line-height: 40px;
  }
  .amv2-content-header__link {
    margin-top: 36px;
  }
  .amv2-content-header__link span {
    margin-right: 18px;
    font-size: 24px;
    line-height: 24px;
  }
  .amv2-content-header__link svg {
    width: 18px;
    height: 18px;
    margin-top: 3px;
  }
  .amv2-content-header__logo {
    max-width: 288px;
    max-height: 108px;
  }
  .amv2-section {
    margin-top: 60px;
  }
  .amv2-section__title {
    font-size: 30px;
    line-height: 30px;
  }
  .amv2-section__list {
    margin-top: 36px;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 48px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 36px;
  }
  .amv2-section-item {
    width: 440px;
  }
  .amv2-section-item svg {
    width: 18px;
    height: 18px;
  }
  .amv2-section-item--course {
    min-height: 84px;
    padding: 18px 24px 18px 12px;
  }
  .amv2-section-item--feature {
    padding: 18px 24px;
  }
  .amv2-section-item__content--course {
    padding: 0px 24px 0px 18px;
  }
  .amv2-section-item__content--course p {
    margin-top: 14px;
  }
  .amv2-section-item__content--feature div {
    margin-top: 18px;
  }
  .amv2-section-item__logo {
    max-width: 48px;
    max-height: 48px;
  }
  .amv2__dropdown-arrow {
    left: 564px;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 488px);
    font-size: 18px;
    line-height: 20px;
  }
}
body[drawer-opened] {
  height: 100vh;
  overflow: hidden;
}
body[drawer-opened] .drawerv2 {
  transform: translateX(0);
}

.drawerv2 {
  padding-bottom: 24px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 8px 0px rgba(8, 7, 66, 0.1);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transform: translate(100vw);
  transition: transform 300ms ease-out;
}
.drawerv2.show {
  display: flex;
}

.drawerv2-header {
  height: 63px;
  padding: 13.5px 31.05px 13.5px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawerv2-header__logo {
  width: auto;
  height: auto;
}

.drawerv2-header__buttons {
  display: flex;
  align-items: center;
}

.drawerv2-elearning {
  margin-right: 22.05px;
  padding: 8px 13.25px 8px 10.25px;
  border-radius: 20px;
  border: 1px solid #fdc094;
  background: transparent;
  display: inline-flex;
  align-items: center;
}
.drawerv2-elearning svg {
  width: 13.5px;
  height: 13.5px;
}
.drawerv2-elearning span {
  margin-left: 6px;
  color: #120c6e;
  font-family: "Raleway";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.drawerv2-close {
  border: 0;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.drawerv2-close svg {
  width: 9.9px;
  height: 9.9px;
}

.drawerv2-body {
  flex: 1;
}

.drawerv2-section.open .drawerv2-section-header svg {
  transform: rotate(180deg);
}
.drawerv2-section.open .drawerv2-section-sub-container {
  display: block;
}

.drawerv2-section-header,
.drawerv2-link {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
}

.drawerv2-section-header p,
.drawerv2-link {
  color: #18386c;
  font-family: "Raleway";
  font-size: 12px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 18px;
}

.drawerv2-link--notification::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 50%;
  background: #15d2ad;
}

.drawerv2-section-header p {
  margin: 0 8px 0 0;
}
.drawerv2-section-header svg {
  width: 10px;
  height: 6px;
  transform-origin: center;
}

.drawerv2-section-sub-container {
  display: none;
  height: 0;
  overflow: hidden;
}
.drawerv2-section-sub-container.drawerv2-section-sub-container--enterprise a {
  height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid #fdc094;
  background: #fedec3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawerv2-section-sub-container.drawerv2-section-sub-container--enterprise a span {
  font-family: "Raleway";
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #080742;
}
.drawerv2-section-sub-container.drawerv2-section-sub-container--enterprise a svg {
  width: 13px;
  height: 8px;
}
.drawerv2-section-sub-container.drawerv2-section-sub-container--enterprise a svg path {
  fill: #080742;
}

.drawerv2-tabbar {
  height: 48px;
  padding: 0 18px;
  background: #0a008f;
  box-shadow: 0px 4px 8px 0px rgba(28, 28, 28, 0.08);
  display: flex;
  overflow: auto;
  scrollbar-width: none;
}
.drawerv2-tabbar::-webkit-scrollbar {
  height: 0;
}
.drawerv2-tabbar > :not(:first-child) {
  margin-left: 24px;
}

.drawerv2-tabbar-button {
  height: 100%;
  border: 0;
  background: transparent;
  white-space: nowrap;
  color: #ffecd6;
  font-family: "Raleway";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.drawerv2-tabbar-button.selected {
  color: #fff;
}
.drawerv2-tabbar-button:focus {
  outline: 0;
}

.drawerv2-tab-section.hide {
  display: none;
}

.drawerv2-tab-section.open .drawerv2-tab-section__header svg {
  transform: rotate(180deg);
}
.drawerv2-tab-section.open .drawerv2-tab-section__content {
  display: block;
  padding: 16px 15px;
}

.drawerv2-tab-section__header {
  height: 48px;
  padding: 0 22px 0 18px;
  border-bottom: 1px solid #ffecd6;
  background: #fff7ee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawerv2-tab-section__header p {
  color: var(--main-violet, #080742);
  font-family: "Raleway";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.drawerv2-tab-section__header svg {
  width: 10px;
  height: 6px;
}

.drawerv2-tab-section__content {
  height: 0;
  display: none;
  overflow: hidden;
}

.drawerv2-tab-section__buttons {
  display: flex;
  align-items: center;
}
.drawerv2-tab-section__buttons > :not(:first-child) {
  margin-left: 8px;
}
.drawerv2-tab-section__buttons button {
  padding: 5px 11px;
  border-radius: 42px;
  border: 1px solid #120c6e;
  background: transparent;
  color: #120c6e;
  font-family: "Raleway";
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
.drawerv2-tab-section__buttons button.selected {
  background: #120c6e;
  color: #fff;
}

.drawerv2-tab-section__list,
.drawerv2-tab-section__features {
  display: none;
  margin-top: 16px;
}
.drawerv2-tab-section__list > :not(:first-child),
.drawerv2-tab-section__features > :not(:first-child) {
  margin-top: 8px;
}
.drawerv2-tab-section__list.show,
.drawerv2-tab-section__features.show {
  display: block;
}

.drawerv2-tab-section-item,
.drawerv2-tab-section-item--feature {
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(203, 203, 203, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawerv2-tab-section-item > div span,
.drawerv2-tab-section-item--feature > div span {
  color: var(--main-violet, #080742);
  font-family: "Raleway";
  font-size: 10px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 16px;
}
.drawerv2-tab-section-item > div p,
.drawerv2-tab-section-item > div div,
.drawerv2-tab-section-item--feature > div p,
.drawerv2-tab-section-item--feature > div div {
  color: var(--main-violet, #080742);
  font-family: "Raleway";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.drawerv2-tab-section-item svg,
.drawerv2-tab-section-item--feature svg {
  width: 10px;
  height: 6.15px;
}

.drawerv2-tab-section-item--feature {
  min-height: 52px;
  padding: 9px 12px;
  border-radius: 2px;
}
.drawerv2-tab-section-item--feature > div span {
  font-size: 9px;
  font-weight: 600 !important;
  line-height: 9px;
}
.drawerv2-tab-section-item--feature > div > div {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 400;
  line-height: 8px;
}
.drawerv2-tab-section-item--feature > div > div * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.drawerv2-footer {
  padding: 0 18px;
  background: unset;
  display: flex;
  align-items: center;
}

.drawerv2-footer-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.drawerv2-footer-button.selected {
  background: rgba(18, 12, 110, 0.2);
}
.drawerv2-footer-button svg {
  width: 20px;
  height: 14px;
}

.drawerv2-footer-button--de {
  margin-right: 16px;
}

@media (min-width: 1024px) {
  .drawerv2 {
    display: none;
  }
}
@media (min-width: 1200px) {
  .drawerv2 {
    display: none;
  }
}
.footerv2 {
  padding: 0;
  background: radial-gradient(102.62% 99.23% at 102.81% -4.64%, #120c6e 24.48%, #080742 88.73%);
  /* TEMP */
  color: white;
  /* END - TEMP */
}

.footerv2-body {
  padding: 24px 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footerv2-tectrain {
  order: 1;
  width: 100%;
  height: 291.31px;
  background: red;
}

.footerv2-navigation {
  order: 2;
  width: 32.2916%;
  height: 176px;
  margin-top: 24px;
  background: purple;
}

.footerv2-newsletter {
  order: 4;
  width: 100%;
  height: 224px;
  margin-top: 24px;
  background: orange;
}

.footerv2-contact {
  order: 3;
  width: 47.2222%;
  height: 230px;
  margin-top: 24px;
  background: green;
}

.footerv2-payment-methods {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  background: violet;
}

.footerv2-bottom {
  margin-top: 16px;
  padding: 24px 16px 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  display: flex;
  justify-content: center;
}

@media (min-width: 600px) {
  .footerv2-body {
    padding: 26px 44px 0 30px;
    justify-content: initial;
  }
  .footerv2-tectrain {
    width: 49.4209%;
    height: 184px;
  }
  .footerv2-navigation {
    width: 46.78%;
    height: 92.28px;
    margin-top: 0;
    margin-left: 16px;
  }
  .footerv2-newsletter {
    order: 3;
    width: 49.4209%;
    height: 238px;
    margin-top: 31.72px;
  }
  .footerv2-contact {
    order: 4;
    width: 38.4804%;
    height: 288px;
    margin-top: -60px;
    margin-left: 16px;
  }
  .footerv2-payment-methods {
    margin-top: 40.28px;
  }
  .footerv2-bottom {
    padding: 24px 139px;
  }
}
@media (min-width: 1024px) {
  .footerv2__inner {
    max-width: 920px;
    margin: 0 auto;
  }
  .footerv2-body {
    padding: 48px 0 0;
  }
  .footerv2-tectrain {
    width: 22.3913%;
    height: 240px;
  }
  .footerv2-navigation {
    width: 64.6739%;
    height: 64px;
    margin-left: 32px;
  }
  .footerv2-newsletter {
    order: 4;
    width: 22.3913%;
    height: 242px;
    margin-top: -136px;
    margin-left: 32px;
  }
  .footerv2-contact {
    order: 3;
    width: 48.2608%;
    height: 184px;
    margin-top: -136px;
    margin-left: 238px;
  }
  .footerv2-payment-methods {
    margin-top: 4px;
    justify-content: initial;
  }
  .footerv2-bottom {
    margin-top: 48px;
    padding: 24px 52px;
  }
}
@media (min-width: 1440px) {
  .footerv2__inner {
    max-width: 1260px;
  }
  .footerv2-body {
    padding-top: 64px;
  }
  .footerv2-tectrain {
    width: 21.4171%;
    height: 286px;
  }
  .footerv2-navigation {
    width: 56.2101%;
    height: 70px;
    margin-left: 54px;
  }
  .footerv2-newsletter {
    width: 22.3913%;
    height: 242px;
    margin-top: -166px;
    margin-left: 80px;
  }
  .footerv2-contact {
    width: 23.1687%;
    height: 305px;
    margin-top: -166px;
    margin-left: 323px;
  }
  .footerv2-payment-methods {
    margin-top: 12px;
  }
  .footerv2-bottom {
    margin-top: 46.73px;
    padding: 25px 103px 25px 90px;
  }
}
@media (min-width: 1920px) {
  .footerv2__inner {
    max-width: 1632px;
  }
  .footerv2-body {
    padding-top: 88px;
  }
  .footerv2-tectrain {
    width: 23.5294%;
    height: 322px;
  }
  .footerv2-navigation {
    width: 60.9681%;
    height: 92px;
    margin-left: 32px;
  }
  .footerv2-newsletter {
    width: 23.5294%;
    height: 380px;
    margin-left: 141px;
  }
  .footerv2-contact {
    width: 42.3406%;
    height: 300px;
    margin-left: 416px;
  }
  .footerv2-payment-methods {
    margin-top: -135px;
  }
  .footerv2-bottom {
    margin-top: 48px;
    padding: 34px 144px;
  }
}
.amv2-customized-safe-banner {
  margin-top: 16px;
  padding: 16px 16px 12px 12px;
  border-radius: 2px;
  box-shadow: 0px 4px 12px 0px rgba(8, 7, 66, 0.1);
  background: radial-gradient(270.12% 175.03% at 110.23% 0%, rgba(8, 7, 66, 0.9) 14.32%, rgba(8, 7, 66, 0.9) 19.04%, rgba(37, 83, 155, 0.36) 92.57%);
  position: relative;
}
.amv2-customized-safe-banner::before {
  content: "";
  background-image: url(/assets/img_v2/template/cstm-safe-1.webp);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.amv2-customized-safe-banner__title {
  color: #fff;
  font-family: "Raleway";
  font-size: 12px;
  font-weight: 600 !important;
  line-height: 12px;
  letter-spacing: 0.24px;
}

.amv2-customized-safe-banner__text {
  margin-top: 12px;
  color: #fff;
  font-family: "Raleway";
  font-size: 9px;
  line-height: 12px;
}
.amv2-customized-safe-banner__text * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.amv2-customized-safe-banner__text strong, .amv2-customized-safe-banner__text b {
  font-weight: 600;
}

.amv2-customized-safe-banner__button {
  margin-top: 12px;
  padding: 4px 9px;
  border-radius: 59px;
  border: 1px solid #fff;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: "Raleway";
  font-size: 8px;
  font-weight: 600;
  line-height: 10px;
  transition: background 200ms ease-out, color 200ms ease-out;
}
.amv2-customized-safe-banner__button:hover, .amv2-customized-safe-banner__button:active {
  background: #fff;
  color: #120c6e;
}

.amv2-customized-safe-banner__logo {
  display: none;
}

@media (min-width: 600px) {
  .amv2-customized-safe-banner {
    padding: 16px 12px;
    background: radial-gradient(270.12% 175.03% at 110.23% 0%, rgba(8, 7, 66, 0.9) 14.32%, rgba(8, 7, 66, 0.9) 19.04%, rgba(37, 83, 155, 0.36) 92.57%);
  }
  .amv2-customized-safe-banner::before {
    background-image: url(/assets/img_v2/template/cstm-safe-2.webp);
    background-size: cover;
  }
  .amv2-customized-safe-banner__text {
    max-width: 389px;
  }
}
@media (min-width: 1024px) {
  .amv2-customized-safe-banner {
    margin-top: 18px;
    padding: 16px;
  }
  .amv2-customized-safe-banner::before {
    background-image: url(/assets/img_v2/template/cstm-safe-3.webp);
  }
  .amv2-customized-safe-banner__text {
    max-width: 432px;
  }
}
@media (min-width: 1440px) {
  .amv2-customized-safe-banner {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 4px;
  }
  .amv2-customized-safe-banner::before {
    background-image: url(/assets/img_v2/template/cstm-safe-4.webp);
  }
  .amv2-customized-safe-banner__title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
  .amv2-customized-safe-banner__text {
    max-width: 580px;
    font-size: 12px;
    line-height: 15px;
  }
  .amv2-customized-safe-banner__button {
    margin-top: 16px;
    padding: 5px 11px;
    font-size: 10px;
    line-height: 14px;
  }
}
@media (min-width: 1920px) {
  .amv2-customized-safe-banner {
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 6px;
  }
  .amv2-customized-safe-banner::before {
    background-image: url(/assets/img_v2/template/cstm-safe-5.webp);
  }
  .amv2-customized-safe-banner__title {
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.36px;
  }
  .amv2-customized-safe-banner__text {
    max-width: 788px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .amv2-customized-safe-banner__button {
    padding: 7px 15px;
    font-size: 12px;
    line-height: 18px;
  }
}
@media (min-width: 2560px) {
  .amv2-customized-safe-banner {
    margin-top: 48px;
    padding: 32px 32px 24px;
    border-radius: 8px;
  }
  .amv2-customized-safe-banner::before {
    background-image: url(/assets/img_v2/template/cstm-safe-6.webp);
  }
  .amv2-customized-safe-banner__title {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.4px;
  }
  .amv2-customized-safe-banner__text {
    max-width: 896px;
    font-size: 16px;
    line-height: 22px;
  }
  .amv2-customized-safe-banner__button {
    padding: 9px 19px;
    font-size: 14px;
    line-height: 20px;
  }
  .amv2-customized-safe-banner__logo {
    display: block;
    position: absolute;
    top: 64px;
    right: 64px;
  }
}
.whats-new-popup-overlay {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
}

.whats-new-popup {
  width: 330px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(18, 12, 110, 0.2);
}

.whats-new-popup-header {
  padding: 16px 12px;
  border-radius: 4px 4px 0px 0px;
  background: #120c6e;
}

.whats-new-popup-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whats-new-popup__title {
  color: #fff;
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 20px;
}

.whats-new-popup__close {
  margin-top: 4px;
  border: 0;
  background: transparent;
}
.whats-new-popup__close svg {
  width: 12px;
  height: 12px;
}
.whats-new-popup__close svg path {
  stroke: #ffffff;
}

.whats-new-popup__text {
  margin-top: 8px;
  color: #fff;
  font-family: "Raleway";
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.2px;
}
.whats-new-popup__text p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.whats-new-popup__text p a {
  color: #15d2ad;
  text-decoration: underline !important;
}

@keyframes whats-new-popup-new-ticker-tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-36px);
  }
}
.whats-new-popup-new {
  padding: 4px 0;
  background: #05ffcd;
  overflow: hidden;
}

.whats-new-popup-new__inner {
  display: flex;
  align-items: center;
  animation: 500ms linear infinite forwards whats-new-popup-new-ticker-tape;
}

.whats-new-popup-new__item {
  width: 24px;
  color: #080742;
  font-family: "Raleway";
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.2px;
  margin-left: 12px;
}

.whats-new-popup__list {
  padding: 12px;
}
.whats-new-popup__list > :not(:first-child) {
  margin-top: 12px;
}

.whats-new-popup-banner {
  padding: 16px 12px;
  border-radius: 2px;
  box-shadow: 0px 4px 12px 0px rgba(8, 7, 66, 0.1);
  position: relative;
  background-repeat: no-repeat;
}
.whats-new-popup-banner::after {
  content: "";
  border-radius: inherit;
  background: radial-gradient(270.12% 175.03% at 110.23% 0%, #fff 14.32%, #fff 19.04%, rgba(255, 255, 255, 0.4) 92.57%);
  transform: rotate(180deg);
  transition: background 100ms ease-out;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.whats-new-popup-banner > * {
  position: relative;
  z-index: 1;
}
.whats-new-popup-banner.whats-new-popup-banner--case-study {
  background-image: url(/assets/img_v2/template/whats-new-popup/case-study.webp);
  background-size: 306px 152px;
}
.whats-new-popup-banner.whats-new-popup-banner--customized-safe {
  background-image: url(/assets/img_v2/template/whats-new-popup/cstm-safe.webp);
  background-size: 306px 122px;
}
.whats-new-popup-banner.whats-new-popup-banner--agility-checker {
  background-image: url(/assets/img_v2/template/whats-new-popup/agility-checker.webp);
  background-size: 306px 122px;
}
.whats-new-popup-banner:hover, .whats-new-popup-banner:active {
  cursor: pointer;
}
.whats-new-popup-banner:hover::after, .whats-new-popup-banner:active::after {
  background: radial-gradient(270.12% 175.03% at 110.23% 0%, #080742 14.32%, #080742 19.04%, rgba(37, 83, 155, 0.4) 92.57%);
}
.whats-new-popup-banner:hover .whats-new-popup-banner__title,
.whats-new-popup-banner:hover .whats-new-popup-banner__desc, .whats-new-popup-banner:active .whats-new-popup-banner__title,
.whats-new-popup-banner:active .whats-new-popup-banner__desc {
  color: #fff;
}
.whats-new-popup-banner:hover .whats-new-popup-banner__button, .whats-new-popup-banner:active .whats-new-popup-banner__button {
  border-color: #fff;
  background: #fff;
  color: #120c6e;
}

.whats-new-popup-banner__title {
  color: #080742;
  font-family: "Raleway";
  font-size: 12px;
  font-weight: 600 !important;
  line-height: 16px;
  transition: color 100ms ease-out;
}

.whats-new-popup-banner__desc {
  margin-top: 8px;
  color: var(--Main-Violet, #080742);
  font-family: "Raleway";
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  transition: color 100ms ease-out;
}

.whats-new-popup-banner__button {
  padding: 5px 11px;
  margin-top: 12px;
  border: 1px solid #120c6e;
  border-radius: 59px;
  background: transparent;
  color: #120c6e;
  text-align: center;
  font-family: "Raleway";
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  transition: background 100ms ease-out, border-color 100ms ease-out;
}

@media (min-width: 1920px) {
  .whats-new-popup {
    width: 684px;
  }
  .whats-new-popup-header {
    padding: 32px 40px;
  }
  .whats-new-popup__title {
    font-size: 24px;
    line-height: 32px;
  }
  .whats-new-popup__close {
    margin-top: 8px;
  }
  .whats-new-popup__close svg {
    width: 18px;
    height: 18px;
  }
  .whats-new-popup__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }
  @keyframes whats-new-popup-new-ticker-tape {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-63px);
    }
  }
  .whats-new-popup-new {
    padding: 0;
  }
  .whats-new-popup-new__inner {
    animation-duration: 750ms;
  }
  .whats-new-popup-new__item {
    width: 39px;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.32px;
    margin-left: 24px;
  }
  .whats-new-popup__list {
    padding: 40px;
  }
  .whats-new-popup__list > :not(:first-child) {
    margin-top: 24px;
  }
  .whats-new-popup-banner {
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px 0px rgba(8, 7, 66, 0.1);
    position: relative;
  }
  .whats-new-popup-banner.whats-new-popup-banner--case-study {
    background-image: url(/assets/img_v2/template/whats-new-popup/case-study-xl.webp);
    background-size: 604px 240px;
  }
  .whats-new-popup-banner.whats-new-popup-banner--case-study .whats-new-popup-banner__desc {
    max-width: 321px;
  }
  .whats-new-popup-banner.whats-new-popup-banner--customized-safe {
    background-image: url(/assets/img_v2/template/whats-new-popup/cstm-safe-xl.webp);
    background-size: 604px 240px;
  }
  .whats-new-popup-banner.whats-new-popup-banner--agility-checker {
    background-image: url(/assets/img_v2/template/whats-new-popup/agility-checker-xl.webp);
    background-size: 322px 212px;
    background-position: right bottom;
  }
  .whats-new-popup-banner__title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.44px;
  }
  .whats-new-popup-banner__desc {
    max-width: 259px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .whats-new-popup-banner__button {
    padding: 9px 19px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}
.amv2 {
  display: none;
}

@media (min-width: 1024px) {
  body[lang-menu-on] .amv2 {
    z-index: 106;
  }
  /* Commons */
  .tt-txt-25539b {
    color: #0a008f;
    font-family: "Raleway";
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
  }
  .tt-txt-080742 {
    color: #00001c;
    font-family: "Raleway";
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 9.5px;
  }
  .tt-txt-080742 * {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
  .tt-txt-080742--2 {
    color: #00001c;
    font-family: "Raleway";
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: 11px; /* 100% */
  }
  /* END - Commons */
  .amv2 {
    display: none;
    justify-content: center;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 108;
    transition: z-index 200ms ease-out;
  }
  .amv2.show .amv2__inner {
    opacity: 1;
    transform: translateY(0);
  }
  .amv2__inner {
    width: 928px;
    height: 504px;
    border-radius: 12px;
    background: #ffe9d7;
    box-shadow: 0px 0px 16px 0px rgba(150, 150, 150, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 300ms ease-out, transform 300ms ease-out;
  }
  .amv2-tabbar {
    padding: 0 24px;
    display: flex;
    background: #fff7ee;
    box-shadow: 0px 4px 12px 0px rgba(28, 28, 28, 0.1);
    position: relative;
    z-index: 1;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 24px;
  }
  .amv2-tabbar-button {
    padding: 18px 0;
    border: 0;
    background: transparent;
    position: relative;
  }
  .amv2-tabbar-button::after {
    content: "";
    height: 1.5px;
    background: transparent;
    transition: background 300ms ease-out, color 300ms ease-out;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .amv2-tabbar-button.selected, .amv2-tabbar-button:hover {
    color: #00001c;
  }
  .amv2-tabbar-button.selected::after, .amv2-tabbar-button:hover::after {
    background: #00001c;
  }
  .amv2__content-container {
    flex: 1;
    background: #fff;
    display: flex;
    opacity: 1;
    transform: translateY(0);
    transition: transform 300ms ease-out, opacity 300ms ease-out;
  }
  .amv2-v-tabbar {
    width: 184px;
    height: 456px;
    overflow: auto;
    background: #ffecd6;
    scrollbar-width: none;
  }
  .amv2-v-tabbar::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .amv2-v-tabbar-button {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border: 0;
    background: transparent;
    display: block;
    text-align: left;
    color: #0a008f;
    transition: background 300ms ease-out, box-shadow 300ms ease-out;
    box-shadow: 0 0 5px 0 rgba(0, 0, 28, 0);
  }
  .amv2-v-tabbar-button.selected, .amv2-v-tabbar-button:hover {
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 28, 0.15);
  }
  .amv2-v-tabbar-button--aisuite {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700 !important;
    color: #080742 !important;
    border-left: 3px solid #15D2AD;
    transition: background 0.5s ease-in-out, color 0.4s, border-color 0.4s;
  }
  .amv2-v-tabbar-button--aisuite:hover {
    background: linear-gradient(135deg, rgba(8, 7, 66, 0.9), rgba(12, 0, 184, 0.85)) !important;
    color: #fff !important;
    border-left-color: transparent;
    box-shadow: none !important;
  }
  .amv2-v-tabbar-button--aisuite.selected {
    background: linear-gradient(135deg, #080742, #0C00B8) !important;
    color: #fff !important;
    border-left-color: transparent;
    box-shadow: none !important;
  }
  .amv2-v-tabbar-button--aisuite:hover .amv2-chip-new, .amv2-v-tabbar-button--aisuite.selected .amv2-chip-new {
    background: #15D2AD;
  }
  .amv2-content--aisuite .amv2-section--aisuite {
    margin-bottom: 20px;
  }
  .amv2-content--aisuite .amv2-section__title--aisuite {
    color: #00001c;
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .amv2-chip-new {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    background: #15D2AD;
    color: #00001C;
    line-height: 1.4;
  }
  .amv2-content {
    width: 744px;
    height: 456px;
    padding: 30px 15px 30px 30px;
    overflow: auto;
    display: none;
    position: relative;
    scrollbar-width: none;
  }
  .amv2-content.active {
    display: block;
  }
  .amv2-content::-webkit-scrollbar {
    width: 0;
  }
  .amv2-content__scrollbar {
    width: 3px;
    border-radius: 1.5px;
    background: #e5e6ec;
    position: fixed;
    top: 40px;
    right: 12px;
    bottom: 40px;
    overflow: hidden;
    visibility: hidden;
  }
  .amv2-content__scrollbar.active {
    visibility: visible;
  }
  .amv2-content__scrollbar div {
    width: 100%;
    background: var(--bg-peach, #fdc094);
    position: relative;
    top: 0;
  }
  .amv2-content-header {
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
  }
  .amv2-content-header__title {
    color: #00001c;
    font-family: "Raleway";
    font-size: 18px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 20px;
  }
  .amv2-content-header__link {
    margin-top: 12px;
    display: inline-flex;
  }
  .amv2-content-header__link:hover span, .amv2-content-header__link:active span {
    color: #15d2ad;
  }
  .amv2-content-header__link:hover svg path, .amv2-content-header__link:active svg path {
    fill: #15d2ad;
  }
  .amv2-content-header__link span {
    margin-right: 6px;
    color: #0a008f;
    font-family: "Raleway";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    transition: color 300ms ease-out;
  }
  .amv2-content-header__link svg {
    width: 9px;
    height: 9px;
    margin-top: 1px;
  }
  .amv2-content-header__link svg path {
    fill: #0a008f;
    transition: fill 300ms ease-out;
  }
  .amv2-content-header__logo {
    width: auto;
    height: auto;
    max-width: 144px;
    max-height: 54px;
  }
  .amv2-section {
    margin-top: 30px;
  }
  .amv2-section__title {
    color: var(--main-violet, #080742);
    font-family: "Raleway";
    font-size: 15px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 15px; /* 100% */
  }
  .amv2-section__list {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 18px;
  }
  .amv2-card {
    border-radius: 2px;
    background: #fff;
    box-shadow: 0px 4px 12px 0px rgba(203, 203, 203, 0.25);
    display: inline-flex;
    align-items: center;
  }
  .amv2-section-item {
    width: 212px;
    transition: background 200ms ease-in-out, box-shadow 200ms ease-in-out;
  }
  .amv2-section-item svg {
    width: 9px;
    height: 9px;
    transition: margin-right 100ms ease;
  }
  .amv2-section-item svg path {
    fill: #00001c;
  }
  .amv2-section-item:hover, .amv2-section-item:active {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1294117647);
    background: #fbfbfb;
  }
  .amv2-section-item:hover svg, .amv2-section-item:active svg {
    margin-right: -5px;
  }
  .amv2-section-item--course {
    min-height: 42px;
    padding: 9px 12px 9px 6px;
  }
  .amv2-section-item--feature {
    padding: 9px 12px;
    background: radial-gradient(378.14% 213.76% at 167.09% 7.96%, #000 0%, #0c00b8 100%), #fff;
  }
  .amv2-section-item--feature .tt-txt-080742--2,
  .amv2-section-item--feature .tt-txt-080742 {
    color: #fff;
  }
  .amv2-section-item--feature svg path {
    fill: #fff;
  }
  .amv2-section-item--feature:hover, .amv2-section-item--feature:active {
    background: radial-gradient(378.14% 213.76% at 167.09% 7.96%, #000 0%, #0c00b8 100%), #fff;
  }
  .amv2-section-item__content--course {
    flex: 1;
    padding: 0 12px;
  }
  .amv2-section-item__content--course h4 {
    font-weight: 400 !important;
  }
  .amv2-section-item__content--course p {
    margin-top: 6px;
  }
  .amv2-section-item__content--feature {
    flex: 1;
  }
  .amv2-section-item__content--feature h4 {
    font-weight: 600 !important;
  }
  .amv2-section-item__content--feature div {
    max-width: 126px;
    margin-top: 6px;
  }
  .amv2-section-item__logo {
    width: auto;
    height: auto;
    max-width: 24px;
    max-height: 24px;
  }
  .amv2__dropdown-arrow {
    width: 28px;
    height: 24px;
    position: absolute;
    top: -23px;
    left: 238px;
    z-index: 108;
    filter: drop-shadow(0px -8px 8px rgba(0, 0, 28, 0.15));
  }
  .amv2__dropdown-arrow svg path {
    fill: #fff7ee;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 236px);
    color: #000;
    font-family: "Raleway";
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .amv2__foundation-item-desc strong,
  .amv2__foundation-item-desc b {
    font-weight: 600;
  }
}
@media (min-width: 1440px) {
  /* Commons */
  .tt-txt-25539b {
    font-size: 16px;
    line-height: 16px;
  }
  .tt-txt-080742 {
    font-size: 10px;
    line-height: 11.5px;
  }
  .tt-txt-080742--2 {
    font-size: 12px;
    line-height: 13.5px;
  }
  /* END - Commons */
  .amv2 {
    top: 112px;
  }
  .amv2__inner {
    width: 1260px;
    height: 672px;
    max-height: calc(100vh - 156px);
    overflow: auto;
    border-radius: 16px;
    background: #ffe9d7;
  }
  .amv2__inner::-webkit-scrollbar {
    width: 0;
  }
  .amv2-tabbar {
    padding: 0 32px;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 32px;
  }
  .amv2-tabbar-button {
    padding: 24px 0;
  }
  .amv2-v-tabbar {
    width: 252px;
    height: 608px;
  }
  .amv2-v-tabbar-button {
    height: 64px;
    padding: 0 32px;
  }
  .amv2-content {
    width: 1008px;
    height: 608px;
    padding: 40px 20px 40px 40px;
  }
  .amv2-content__scrollbar {
    width: 4px;
    border-radius: 2px;
    right: 16px;
  }
  .amv2-content-header {
    padding-right: 20px;
  }
  .amv2-content-header__title {
    font-size: 24px;
    line-height: 28px;
  }
  .amv2-content-header__link {
    margin-top: 16px;
  }
  .amv2-content-header__link span {
    margin-right: 12px;
    font-size: 16px;
    line-height: 16px;
  }
  .amv2-content-header__link svg {
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }
  .amv2-content-header__logo {
    max-width: 192px;
    max-height: 72px;
  }
  .amv2-section {
    margin-top: 40px;
  }
  .amv2-section__title {
    font-size: 20px;
    line-height: 20px;
  }
  .amv2-section__list {
    margin-top: 24px;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 32px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 24px;
  }
  .amv2-section__list.amv2-section__list--foundation {
    align-items: center;
  }
  .amv2-card {
    border-radius: 4px;
  }
  .amv2-section-item {
    width: 288px;
  }
  .amv2-section-item svg {
    width: 12px;
    height: 12px;
  }
  .amv2-section-item--course {
    min-height: 56px;
    padding: 12px 16px 12px 8px;
  }
  .amv2-section-item--feature {
    padding: 12px 16px;
  }
  .amv2-section-item__content--course {
    padding: 0 16px 0 12px;
  }
  .amv2-section-item__content--course p {
    margin-top: 4px;
  }
  .amv2-section-item__content--feature div {
    max-width: initial;
    margin-top: 8px;
  }
  .amv2-section-item__logo {
    max-width: 32px;
    max-height: 32px;
  }
  .amv2__dropdown-arrow {
    left: 280px;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 320px);
  }
}
@media (min-width: 1920px) {
  /* Commons */
  .tt-txt-25539b {
    font-size: 20px;
    line-height: 20px;
  }
  .tt-txt-080742 {
    font-size: 12px;
    line-height: 15px;
  }
  .tt-txt-080742--2 {
    font-size: 16px;
    line-height: 19px;
  }
  /* END - Commons */
  .amv2 {
    top: 120px;
  }
  .amv2__inner {
    width: 1680px;
    height: 84vh;
    border-radius: 20px;
    overflow: hidden;
  }
  .amv2-tabbar {
    padding: 0 40px;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 40px;
  }
  .amv2-tabbar-button {
    padding: 30px 0;
  }
  .amv2-v-tabbar {
    width: 336px;
    height: 76.6vh;
  }
  .amv2-v-tabbar-button {
    height: 80px;
    padding: 0 40px;
  }
  .amv2-content {
    width: 1344px;
    height: 76.6vh;
    padding: 50px 25px 50px 50px;
  }
  .amv2-content__scrollbar {
    width: 5px;
    border-radius: 2.5px;
    right: 20px;
  }
  .amv2-content-header {
    padding-right: 25px;
  }
  .amv2-content-header__title {
    font-size: 30px;
    line-height: 34px;
  }
  .amv2-content-header__link {
    margin-top: 30px;
  }
  .amv2-content-header__link span {
    margin-right: 16px;
    font-size: 20px;
    line-height: 20px;
  }
  .amv2-content-header__link svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
  .amv2-content-header__logo {
    max-width: 240px;
    max-height: 96px;
  }
  .amv2-section {
    margin-top: 50px;
  }
  .amv2-section__title {
    font-size: 24px;
    line-height: 24px;
  }
  .amv2-section__list {
    margin-top: 30px;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 40px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 30px;
  }
  .amv2-section-item {
    width: 388px;
  }
  .amv2-section-item svg {
    width: 16px;
    height: 16px;
  }
  .amv2-section-item--course {
    min-height: 70px;
    padding: 15px 20px 15px 10px;
  }
  .amv2-section-item--feature {
    padding: 15px 20px 16px;
  }
  .amv2-section-item__content--course {
    padding: 1px 20px 1px 15px;
  }
  .amv2-section-item__content--course p {
    margin-top: 10px;
  }
  .amv2-section-item__content--feature div {
    margin-top: 14px;
  }
  .amv2-section-item__logo {
    max-width: 40px;
    max-height: 40px;
  }
  .amv2__dropdown-arrow {
    left: 492px;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 428px);
    font-size: 16px;
    line-height: 18px;
  }
}
@media (min-width: 2560px) {
  /* Commons */
  .tt-txt-25539b {
    font-size: 24px;
    line-height: 24px;
  }
  .tt-txt-080742 {
    font-size: 14px;
    line-height: 17px;
  }
  .tt-txt-080742--2 {
    font-size: 20px;
    line-height: 22px;
  }
  /* END - Commons */
  .amv2 {
    top: 132px;
  }
  .amv2__inner {
    width: 1920px;
    height: 1008px;
    border-radius: 24px;
  }
  .amv2-tabbar {
    padding: 0 48px;
  }
  .amv2-tabbar > :not(:first-child) {
    margin-left: 48px;
  }
  .amv2-tabbar-button {
    padding: 36px 0;
  }
  .amv2-v-tabbar {
    width: 384px;
    height: 912px;
  }
  .amv2-v-tabbar-button {
    height: 96px;
    padding: 0 48px;
  }
  .amv2-content {
    width: 1536px;
    height: 912px;
    padding: 60px 30px 60px 60px;
  }
  .amv2-content__scrollbar {
    width: 6px;
    border-radius: 3px;
    top: 60px;
    right: 24px;
    bottom: 60px;
  }
  .amv2-content-header {
    padding-right: 30px;
  }
  .amv2-content-header__title {
    font-size: 36px;
    line-height: 40px;
  }
  .amv2-content-header__link {
    margin-top: 36px;
  }
  .amv2-content-header__link span {
    margin-right: 18px;
    font-size: 24px;
    line-height: 24px;
  }
  .amv2-content-header__link svg {
    width: 18px;
    height: 18px;
    margin-top: 3px;
  }
  .amv2-content-header__logo {
    max-width: 288px;
    max-height: 108px;
  }
  .amv2-section {
    margin-top: 60px;
  }
  .amv2-section__title {
    font-size: 30px;
    line-height: 30px;
  }
  .amv2-section__list {
    margin-top: 36px;
  }
  .amv2-section__list > :not(:nth-child(3n+1)) {
    margin-left: 48px;
  }
  .amv2-section__list > :nth-child(n+4) {
    margin-top: 36px;
  }
  .amv2-section-item {
    width: 440px;
  }
  .amv2-section-item svg {
    width: 18px;
    height: 18px;
  }
  .amv2-section-item--course {
    min-height: 84px;
    padding: 18px 24px 18px 12px;
  }
  .amv2-section-item--feature {
    padding: 18px 24px;
  }
  .amv2-section-item__content--course {
    padding: 0px 24px 0px 18px;
  }
  .amv2-section-item__content--course p {
    margin-top: 14px;
  }
  .amv2-section-item__content--feature div {
    margin-top: 18px;
  }
  .amv2-section-item__logo {
    max-width: 48px;
    max-height: 48px;
  }
  .amv2__dropdown-arrow {
    left: 564px;
  }
  .amv2__foundation-item-desc {
    width: calc(100% - 488px);
    font-size: 18px;
    line-height: 20px;
  }
}
#CybotCookiebotDialogPoweredbyCybot {
  display: none;
}

#CybotCookiebotDialogPoweredByText {
  display: none;
}