/* Training companies static page */

body.training-companies-page-new {
  margin: 0;
  font-family: 'Gibson', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #203540;
  background: #ffffff;
}

.training-companies-page-new .cc-footer__link,
.training-companies-page-new .cc-footer__copyright,
.training-companies-page-new .cc-footer__legal-link {
  opacity: 1;
}

.training-companies-page-new * {
  box-sizing: border-box;
}

.training-companies-page-new a {
  text-decoration: none;
}

.tc-page {
  overflow-x: hidden;
  --tc-testimonial-bg-size: cover;
  --tc-testimonial-bg-position: center center;
  --tc-testimonial-bg-opacity: 1;
  --tc-testimonial-overlay-opacity: 0.2;
}

.tc-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.tc-section-title {
  margin: 0 0 20px;
  color: #FFF;
}

.tc-section-copy {
  margin: 0;
  color: #FFF;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 46px;
  padding: 18px 38px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.tc-btn--primary {
  background: #0083ca;
  color: #ffffff;
}

.tc-btn--secondary {
  background: #ffc50a;
  color: #203540;
}

.tc-hero-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.tc-hero {
  border-radius: 30px;
  background: linear-gradient(135deg, #f5fafa 0%, #ffffff 50%, #eef7fc 100%);
  min-height: 730px;
  position: relative;
  overflow: hidden;
}

.tc-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(320px, 40vw, 640px);
  gap: 50px;
  align-items: center;
  padding: 90px 100px 70px;
}

.tc-hero__inner > div:first-child {
  max-width: 800px;
}

.tc-hero__title {
  margin: 0 0 20px;
  color: #203540;
}

.tc-hero__copy {
  font-weight: 500 !important;
  font-size: 20px !important;
  margin: 0 0 16px;
  color: #203540;
}

.tc-hero__copy--small {
  margin: 0;
  color: #203540;
}

.tc-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tc-hero__actions-top {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 12px;
}

.tc-hero__actions-top .tc-btn {
  min-width: 300px;
}

.tc-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.tc-hero__video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  line-height: 0;
  display: block;
}

.tc-video--enabled {
  cursor: pointer;
}

.tc-hero__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tc-video--enabled .tc-hero__play-btn {
  display: inline-flex;
}

.tc-hero__video-consent {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 3;
  border-radius: 10px;
  background: rgba(32, 53, 64, 0.78);
  color: #FFFFFF;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  backdrop-filter: blur(2px);
}

.tc-hero__video-consent-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #FFFFFF;
}

.tc-hero__video-consent-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  background: #FFC50A;
  color: #203540;
  cursor: pointer;
  white-space: nowrap;
}

.tc-video--enabled .tc-hero__video-consent {
  display: none;
}

.tc-hero__play-btn svg {
  width: 100%;
  height: 100%;
}

.tc-hero__video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  display: block;
}

.tc-logos {
  padding: 90px 0;
}

.tc-logos__title {
  text-align: center;
  margin: 0 0 40px;
  color: #203540;
}

.tc-logos__strip {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #ffffff;
}

.tc-logos__strip img {
  width: 100%;
  display: block;
}

.tc-logo-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  padding: 16px 0;
}

.tc-logo-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tc-logo-scroll 34s linear infinite;
}

.tc-logo-carousel__logo {
  padding: 0 24px;
  flex: 0 0 auto;
}

.tc-logo-carousel__logo img {
  width: 130px;
  height: auto;
  display: block;
  opacity: 0.9;
}

@keyframes tc-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tc-different {
  background: #0083ca;
  padding: 100px 0;
}

.tc-different__title {
  text-align: center;
  margin: 0;
  color: #ffffff;
}

.tc-different__intro {
  max-width: 720px;
  margin: 20px auto 40px;
  text-align: center;
  color: #ffffff;
}

.tc-different__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tc-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 45px 22px;
  text-align: center;
}

.tc-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}

.tc-card h3 {
  margin: 0 0 12px;
  color: #203540;
}

.tc-card p {
  margin: 0;
  color: #203540;
}

.tc-split {
    padding: 110px 0 110px;
    background-color: #0083CA;
}

.tc-split__row {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

.tc-split__row > * {
  min-width: 0;
}

.tc-split__image {
  height: 80%;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 30px 40px rgba(32, 53, 64, 0.12);
  display: block;
}

.tc-questions {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.tc-q {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #ffffff;
}

.tc-q__btn {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 24px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  color: #203540;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: normal;
  word-break: break-word;
}

.tc-q__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  position: relative;
}

.tc-q__icon::before,
.tc-q__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #0083ca;
  transform: translate(-50%, -50%);
}

.tc-q__icon::before {
  width: 14px;
  height: 2px;
}

.tc-q__icon::after {
  width: 2px;
  height: 14px;
}

.tc-q__answer {
  display: none;
  padding: 0 24px 22px;
  color: #203540;
}

.tc-q.is-open .tc-q__answer {
  display: block;
}

.tc-q.is-open .tc-q__icon::after {
  display: none;
}

.tc-testimonial {
  padding: 110px 0 0;
}


.tc-testimonial__card {
  border-radius: 20px;
  background: #f5fafa;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  position: relative;
}

.tc-testimonial__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5fafa url('/assets/img/training-companies/testimonial-bg.webp') var(--tc-testimonial-bg-position) / var(--tc-testimonial-bg-size) no-repeat;
  opacity: var(--tc-testimonial-bg-opacity);
  pointer-events: none;
}

.tc-testimonial__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 250, 250, 0.92) 0%, rgba(245, 250, 250, 0.74) 50%, rgba(245, 250, 250, 0.92) 100%);
  opacity: var(--tc-testimonial-overlay-opacity, 0.2);
  pointer-events: none;
}

.tc-testimonial__inner {
  display: grid;
  grid-template-columns: 295px 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  position: relative;
  z-index: 1;
}

.tc-testimonial__inner img {
  width: 295px;
  height: 295px;
  object-fit: cover;
  border-radius: 10px;
}

.tc-testimonial__quote {
  margin: 0 0 26px;
  color: #203540;
  font-size: 26px !important;
  font-weight: 500 !important;
}

.tc-testimonial__name {
  margin: 0;
  color: #203540;
  font-weight: 400;
}

.tc-testimonial__role {
  margin: 4px 0 0;
  color: #203540;
  font-weight: 500 !important;
}

.tc-testimonial__cta {
  margin-top: 30px;
}

.tc-works {
  padding: 110px 0 0;
}

.tc-works__title {
  text-align: center;
  margin: 0 0 50px;
  color: #203540;
}

.tc-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}

.tc-step--reverse {
  grid-template-columns: 1fr 1fr;
}

.tc-step__media img {
  width: 100%;
  border-radius: 10px;
}

.tc-step__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  color: #203540;
  font-weight: 500;
}

.tc-step__title {
  margin: 0 0 16px;
  color: #203540;
}

.tc-step__copy {
  margin: 0 0 16px;
  color: #203540;
}

.tc-compare {
  padding: 20px 0 0;
}

.tc-compare__title {
  margin: 0 0 35px;
  text-align: center;
  color: #203540;
}

.tc-compare__wrap {
  border: 1px solid #e8e9eb;
  background: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
}

.tc-compare__head,
.tc-compare__row {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  align-items: center;
}

.tc-compare__head {
  padding: 20px;
  font-size: 18px;
  color: #203540;
  font-weight: 600;
}

.tc-compare__row {
  padding: 10px 20px;
  border-top: 1px solid #e8e9eb;
  background: #ffffff;
}

.tc-compare__feature {
  font-size: 16px;
  line-height: 1.4;
  color: #203540;
}

.tc-compare__cell {
  display: flex;
  justify-content: center;
}

.tc-compare__cell img {
  width: 14px;
  height: 14px;
}

.tc-cta {
  margin: 110px auto 0;
  border-radius: 20px;
  background: #f5fafa;
  overflow: hidden;
}

.tc-cta__inner {
  padding: 90px 30px;
  text-align: center;
}

.tc-cta__title {
  margin: 0;
  color: #203540;
}

.tc-cta__perks {
  margin: 26px 0 34px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.tc-cta__perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #203540;
}

.tc-cta__perk img {
  width: 18px;
  height: 18px;
}

@media (max-width: 1100px) {
  .tc-hero__inner,
  .tc-step,
  .tc-split__row {
    grid-template-columns: 1fr;
  }

  .tc-hero__inner {
    padding: 70px 60px 60px;
  }

  .tc-step__media {
    order: 2;
  }

  .tc-step__content {
    order: 1;
  }

  .tc-different__grid {
    grid-template-columns: 1fr;
  }

  .tc-testimonial__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tc-testimonial__inner img {
    width: 100%;
    height: auto;
    max-width: 295px;
  }

  .tc-compare__head,
  .tc-compare__row {
    grid-template-columns: 1fr 120px 120px;
  }
}

@media (max-width: 768px) {
  .tc-page {
    --tc-testimonial-bg-size: 190% auto;
    --tc-testimonial-bg-position: center top;
    --tc-testimonial-bg-opacity: 0.34;
    --tc-testimonial-overlay-opacity: 1;
  }

  .tc-hero-wrap {
    padding: 16px 12px 0;
  }

  .tc-hero__inner {
    padding: 40px 24px;
  }

  .tc-hero__video-consent {
    inset: auto 10px 10px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .tc-hero__video-consent-btn {
    width: 100%;
  }

  .tc-hero__inner > div:first-child,
  .tc-hero__title,
  .tc-hero__copy,
  .tc-hero__copy--small {
    max-width: 100%;
  }

  .tc-hero__actions-top {
    justify-content: center;
  }

  .tc-hero__actions-top .tc-btn {
    width: 100%;
    max-width: 280px;
  }

  .tc-logos,
  .tc-different,
  .tc-split,
  .tc-testimonial,
  .tc-works {
    padding-top: 70px;
  }

  .tc-split {
    padding-bottom: 70px;
  }

  .tc-split__row {
    gap: 28px;
  }

  .tc-split__image{
      max-width: 100%;
      width: 100%;
  }

  .tc-q__btn {
    padding: 18px 16px;
    font-size: 16px;
    align-items: flex-start;
  }

  .tc-q__answer {
    padding: 0 16px 18px;
  }

  .tc-step {
    margin-bottom: 60px;
  }

  .tc-compare__head,
  .tc-compare__row {
    grid-template-columns: 1fr 70px 70px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .tc-compare__feature {
    font-size: 16px;
  }

  .tc-compare__head {
    font-size: 16px;
  }
}
