:root {
  --orange: #f76902;
  --black: #000;
  --dark: #1a1a1a;
  --white: #fff;
  --muted: #d9d9d9;
  --text: #1f2128;
  --container: 1280px;
  --small: 1120px;
  --font-brand: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container,
.container--small {
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.container {
  max-width: var(--container);
}

.container--small {
  max-width: var(--small);
}

.button {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 50px;
  min-width: 250px;
  padding: 15px 32px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.button--orange {
  background: var(--orange);
  color: var(--white);
}

.button--orange:hover {
  background: var(--black);
  box-shadow: inset 0 0 0 3px var(--orange);
}

.button--dark {
  background: var(--black);
  color: var(--white);
}

.button--dark:hover {
  box-shadow: inset 0 0 0 3px var(--white);
}

.button--light {
  background: var(--muted);
  color: #202020;
}

.button--light:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 2px #202020;
}

.button-row,
.button-stack {
  display: flex;
  gap: 24px;
}

.button-stack {
  align-items: flex-start;
  flex-direction: column;
}

.topbar {
  background: var(--white);
  position: fixed;
  width: 100%;
  z-index: 10;
}

.topbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 86px;
}

.topbar img {
  width: 170px;
}
main {padding-top: 85px;}
.hero {
  color: var(--white);
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero__image,
.hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 43%, rgba(0, 0, 0, 0.08) 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(43px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
  max-width: 780px;
}

.hero p {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.35;
  margin: 30px 0 36px;
  max-width: 610px;
}

.hero p strong {
  font-weight: 700;
}

.hero .button {
  align-self: flex-start;
  max-width: max-content;
  width: auto;
}

.orange-intro {
  background: var(--orange);
  color: var(--black);
  padding: 118px 0 110px;
  text-align: center;
}

.orange-intro .container--small {
  max-width: 1480px;
}

.orange-intro h2,
.dark-info h2,
.market h2 {
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 auto;
  max-width: 910px;
}

.orange-intro h2 span,
.dark-info h2 span,
.market h2 span {
  color: var(--white);
}

.orange-intro h2 {
  color: var(--white);
  max-width: 1360px;
}

.orange-intro h2 span {
  color: var(--black);
}

.orange-intro__lead {
  color: var(--white);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 300;
  line-height: 1.42;
  margin: 54px auto 112px;
  max-width: 1240px;
}

.orange-intro__lead strong {
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto 72px;
  max-width: 1280px;
}

.metrics article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding: 36px 56px 42px;
  text-align: left;
}

.metrics article:nth-child(2n) {
  border-right: 0;
}

.metrics article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metrics p,
.metric__label,
.metric__note {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.38;
}

.metric__label {
  margin-bottom: 10px;
}

.metric__note {
  margin-top: 14px;
}

.metric__note em {
  font-style: italic;
  font-weight: 300;
}

.metric__value {
  color: var(--black);
  display: block;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  line-height: 0.98;
  margin: 0;
}

.orange-intro__box {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 48px 64px 54px;
}

.orange-intro__box p {
  color: var(--white);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.34;
  margin: 0 auto 34px;
  max-width: 840px;
}

.orange-intro__box .button-row {
  justify-content: center;
}

.quote-section {
  background: var(--white);
  color: var(--black);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.quote-section::before {
  border-left: 110px solid var(--black);
  border-bottom: 100px solid transparent;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
}


.quote-section blockquote {
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 700;
  line-height: 1.32;
  padding: 34px 0;
  position: relative;
  text-align: center;
}

.quote-section blockquote::before,
.quote-section blockquote::after {
  color: var(--black);
  content: "“";
  font-size: 116px;
  font-weight: 700;
  line-height: 0;
  position: absolute;
}

.quote-section blockquote::before {
  left: -8px;
  top: 35px;
}

.quote-section blockquote::after {
  bottom: -4px;
  content: "”";
  right: -8px;
}

.dark-info {
  background: var(--dark);
  color: var(--white);
  padding: 98px 0 104px;
  text-align: center;
}

.dark-info article {
  padding: 0 0 72px;
}

.dark-info article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 72px;
}

.dark-info article p {
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 300;
  line-height: 1.45;
  margin: 34px auto 0;
  max-width: 980px;
}

.dark-info strong {
  color: var(--orange);
  font-weight: 700;
}

.dark-info h2 span {
  color: var(--orange);
}

.dark-info__cta {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: 72px;
  text-align: left;
}

.dark-info__cta p {
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 300;
  line-height: 1.4;
}

.dark-info__cta p + p {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin-top: 28px;
  padding-top: 28px;
}

.program {
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.program::before,
.program::after {
  border: 1px solid rgba(255, 255, 255, 0.75);
  content: "";
  height: 220px;
  position: absolute;
  width: 220px;
}

.program::before {
  left: -100px;
  top: 68px;
  transform: rotate(45deg);
}

.program::after {
  bottom: 60px;
  right: -120px;
  transform: rotate(45deg);
}

.program__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  margin: 0 auto;
  max-width: var(--container);
  min-height: 880px;
  padding: 92px 24px 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.program__content {
  max-width: 610px;
  padding: 0 0 90px;
}

.program__title-link {
  color: inherit;
  display: block;
}

.program h2 {
  color: var(--black);
  font-size: clamp(44px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
}

.program__duration {
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 34px;
}

.program p {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.38;
  margin-bottom: 24px;
}

.program p.program__duration {
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 34px;
}

.program p strong {
  font-weight: 700;
}

.program .button-stack {
  margin-top: 12px;
}

.program__image {
  align-self: end;
  display: flex;
  justify-content: flex-end;
  margin-right: -24px;
}

.program__image--mobile {
  display: none;
}

.program__image img {
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  transform: translateX(92px);
  width: min(58vw, 760px);
}

.market {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 106px;
  text-align: center;
}

.market h2 {
  color: var(--white);
  margin-bottom: 56px;
}

.market h2 span {
  color: var(--orange);
}

.market__box {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  gap: 56px;
  grid-template-columns: 0.72fr 1fr;
  margin-bottom: 48px;
  padding: 52px 64px;
  text-align: left;
}

.market__number {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding-right: 52px;
  text-align: center;
}

.market__number p {
  font-size: 24px;
  font-weight: 300;
}

.market__number strong {
  color: var(--orange);
  display: block;
  font-size: clamp(56px, 6.2vw, 72px);
  font-weight: 700;
  line-height: 0.95;
}

.market__text p {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.4;
}

.market__text p + p {
  margin-top: 24px;
}

.market__text strong {
  color: var(--orange);
  font-weight: 700;
}

.market .button-row {
  justify-content: center;
}

.contact {
  background: var(--white);
  padding: 86px 0 112px;
  text-align: center;
}

.contact__rule {
  background: #202020;
  height: 3px;
  margin: 0 auto 76px;
  max-width: 440px;
}

.contact h2 {
  font-family: var(--font-brand);
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.25;
  margin: 0 auto 54px;
  max-width: 970px;
}

.contact h2 span {
  color: var(--orange);
}

.contact__grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.contact__item {
  align-items: flex-start;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.contact__item img {
  flex: 0 0 36px;
  width: 36px;
}

.contact__item a,
.contact__item strong {
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
}

.contact__item strong {
  text-decoration: none;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 86px 0 48px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer__brand {
  align-items: flex-start;
  display: flex;
  gap: 68px;
}

.footer__brand img {
  width: 160px;
}

.footer__brand ul {
  display: flex;
  gap: 46px;
}

.footer__brand li,
.footer__meta span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

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

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials img {
  height: 24px;
  width: 24px;
}

.footer_gdpr.gdpr {
  background-color: #555;
  border-bottom: 3px solid var(--orange);
  border-top: 3px solid var(--orange);
  bottom: 0;
  box-shadow: 0 4px 8px #0003, 0 6px 20px #00000030;
  color: var(--white);
  left: 0;
  margin-bottom: 0;
  padding: 30px;
  position: fixed;
  width: 100%;
  z-index: 9999 !important;
}

.footer_gdpr .container {
  max-width: 1280px;
}

.footer_gdpr .mb_20 {
  font-family: var(--font-brand);
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
}

.footer_gdpr .mb_20 a {
  color: var(--orange);
  text-decoration: underline;
}

.footer_gdpr .panel1 {
  margin-top: 20px;
}

.footer_gdpr .allCookeSubmit,
.footer_gdpr .mb_10,
.footer_gdpr .cookeSelectSubmit {
  background-color: var(--orange);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-right: 20px;
  padding: 15px 25px;
  text-transform: uppercase;
}

.footer_gdpr .mk-trc.mr_10 {
  align-items: center;
  display: flex;
  font-family: var(--font-brand);
  font-size: 21px;
  gap: 14px;
  line-height: 29px;
  margin-bottom: 10px;
}

.footer_gdpr .mk-trc.mr_10 input {
  display: inline-block;
}

.footer_gdpr .col-md-12.col-sm-12.mt_10 {
  margin-top: 20px;
}

.triangle-bottomleft {
  border-bottom: 80px solid var(--orange);
  border-right: 80px solid transparent;
  bottom: 0;
  cursor: pointer;
  height: 0;
  left: 0;
  position: fixed;
  width: 0;
  z-index: 99999 !important;
}

.triangle-bottomleft i {
  color: var(--black);
  font-size: 25px;
  left: 15px;
  position: absolute;
  top: 45px;
}

p.eyebrow {
  color: var(--orange);
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .topbar__inner {
    min-height: 76px;
  }

  .hero,
  .hero__content {
    min-height: 700px;
  }

  .program__inner {
    grid-template-columns: 1fr 0.9fr;
    min-height: 820px;
  }

  .program__image img {
    transform: translateX(56px);
    width: min(56vw, 620px);
  }
  .footer__brand{
    flex-direction: inherit;
  }
}

@media (max-width: 820px) {
  .container,
  .container--small {
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar .button {
    min-width: 150px;
  }

  .hero,
  .hero__content {
    min-height: 700px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.22) 100%);
  }

  .orange-intro,
  .quote-section,
  .dark-info,
  .market {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .metrics,
  .dark-info__cta,
  .market__box,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .metrics article,
  .metrics article:nth-child(2n),
  .metrics article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .orange-intro__box {
    padding: 36px 24px 42px;
  }

  .button-row,
  .button-stack {
    align-items: center;
    flex-direction: column;
  }

  .button-row .button,
  .button-stack .button {
    max-width: 360px;
    width: 100%;
  }

  .hero .button {
    align-self: stretch;
    max-width: none;
    width: 100%;
  }

  .dark-info__cta {
    text-align: center;
  }

  .program__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 66px 20px 0;
  }

  .program__content {
    max-width: none;
    padding-bottom: 36px;
  }

  .program h2 {
    margin-bottom: 18px;
  }

  .program__duration {
    border-left: 0;
    font-size: 20px;
    margin-bottom: 18px;
    padding-left: 0;
  }

  .program__image--desktop {
    display: none;
  }

  .program__image--mobile {
    align-self: center;
    display: flex;
    justify-content: center;
    margin-right: auto;
    margin: 0 auto 22px;
    width: 100%;
  }

  .program__image--mobile img {
    max-height: 620px;
    object-position: center bottom;
    transform: none;
    width: min(92vw, 520px);
  }

  .market__number {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-right: 0;
    padding: 0 0 32px;
  }
  .quote-section::before {
    display: none;
  }

  .footer__brand,
  .footer__brand ul,
  .footer__meta {
    align-items: flex-start;
    flex-direction: column;
  }
   .eyebrow {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .topbar__inner {
    gap: 18px;
    min-height: 70px;
  }

  .topbar img {
    width: 132px;
  }

  .topbar .button {
    font-size: 14px;
    min-height: 42px;
    min-width: 118px;
    padding: 12px 16px;
  }

  .hero,
  .hero__content {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 21px;
  }

  .orange-intro h2,
  .dark-info h2,
  .market h2,
  .program h2 {
    font-size: 36px;
  }

  .metric__label,
  .metric__note {
    font-size: 22px;
  }

  .metric__value {
    font-size: 58px;
    line-height: 0.96;
  }

  .program h2 {
    margin-bottom: 14px;
  }

  .program__duration {
    font-size: 20px;
    margin-bottom: 16px;
    padding-left: 0;
  }

  .orange-intro__lead,
  .dark-info article p,
  .dark-info__cta p,
  .program p,
  .market__text p {
    font-size: 18px;
  }

  .quote-section::before {
            border-bottom-width: 50px;
        border-left-width: 65px;
  }

  .quote-section blockquote {
    font-size: 22px;
    line-height: 1.34;
    padding: 16px 0;
  }

  .quote-section blockquote::before,
  .quote-section blockquote::after {
    font-size: 72px;
  }

  .quote-section blockquote::before{
    top:20px;
  }

  .market__box {
    gap: 32px;
    padding: 34px 24px;
  }

  .contact {
    padding: 70px 0 84px;
  }

  .contact__rule {
    margin-bottom: 52px;
    max-width: 260px;
  }

  .contact__item {
    justify-content: flex-start;
  }

  .contact__item a,
  .contact__item strong {
    font-size: 18px;
  }

  .footer_gdpr.gdpr {
    padding: 18px;
  }

  .footer_gdpr .mb_20 {
    font-size: 15px;
    line-height: 23px;
  }

  .footer_gdpr .allCookeSubmit,
  .footer_gdpr .mb_10,
  .footer_gdpr .cookeSelectSubmit {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }

  .footer_gdpr .mk-trc.mr_10 {
    font-size: 16px;
  }
}
