.header__left {
  display: flex;
  align-items: center;
  column-gap: 56px;
}
.header__link {
  font-size: 14px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  transition: text-decoration-color 0.15s;
}
.header__link:hover {
  text-decoration-color: var(--color-primary);
}
.header__btn:hover {
  background-color: #222;
}
@media (max-width: 479px) {
  .header__link {
    display: none;
  }
}

.intro {
  position: relative;
  display: flex;
  height: 100vh;
  padding-left: 80px;
}
.intro__content {
  flex-grow: 1;
  align-self: center;
  max-width: 560px;
  margin-bottom: 0;
  padding-top: 120px;
}
.intro__title {
  margin: 0 0 48px;
  font-size: 64px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
}
.intro__title-highlight {
  display: inline-block;
  background-color: var(--color-primary);
}
.intro__subtitle {
  margin: 0 0 72px;
  font-size: 24px;
  font-weight: var(--font-weight-light);
}
.intro__btn {
  display: inline-block;
  height: 64px;
  padding: 0 48px;
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  line-height: 64px;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-dark);
  border-radius: 32px;
  transition: color 0.15s, background-color 0.15s;
}
.intro__btn:hover {
  color: #000;
  background-color: var(--color-primary);
}
.intro__media {
  flex-shrink: 0;
  width: 50%;
  margin-left: auto;
  background-color: var(--color-dark);
  border-radius: 0 0 0 64px;
  overflow: hidden;
}
.intro__img {
  width: 100%;
}
@media (max-width: 1279px) {
  .intro {
    padding-left: 40px;
  }
  .intro__content {
    max-width: 50%;
    padding: 64px 32px 0 0;
  }
  .intro__title {
    font-size: 40px;
  }
}
@media (max-width: 1023px) {
  .intro {
    height: auto;
  }
  .intro__title {
    margin-bottom: 32px;
  }
  .intro__subtitle {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .intro__btn {
    height: 48px;
    padding: 0 32px;
    font-size: 16px;
    line-height: 48px;
  }
}
@media (max-width: 639px) {
  .intro {
    flex-direction: column;
    padding: 0;
  }
  .intro__content {
    max-width: none;
    padding: 32px 24px 56px;
  }
  .intro__media {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 0;
  }
  .intro__img {
    position: absolute;
    top: -10%;
  }
}
@media (max-width: 479px) {
  .intro__media {
    height: 400px;
  }
}

.features {
  margin: 160px 0;
}
.features__header {
  margin-bottom: 96px;
}
.features__title {
  grid-column: span 7;
  margin: 0;
  font-size: 64px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
}
.features__media {
  grid-column: span 6;
}
.features__img {
  width: 100%;
}
.features__tabs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 6;
}
.features__item {
  padding: 32px 64px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.features__item--selected {
  opacity: 1;
}
.features__caption {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
}
.features__description {
  color: #666;
}
@media (max-width: 1279px) {
  .features {
    margin: 120px 0;
  }
  .features__title {
    font-size: 56px;
  }
}
@media (max-width: 1023px) {
  .features {
    margin: 80px 0;
  }
  .features__header {
    margin-bottom: 56px;
  }
  .features__title {
    font-size: 40px;
  }
  .features__media {
    margin-bottom: 56px;
  }
  .features__item {
    padding: 0;
    opacity: 1;
  }
  .features__item + .features__item {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
  }
}

.timeline {
  padding: 120px 0;
  background-color: var(--color-dark);
}
.timeline__header {
  margin-bottom: 96px;
}
.timeline__title {
  grid-column: span 5;
  margin: 0;
  font-size: 56px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
  color: #fff;
}
.timeline__subtitle {
  grid-column: 7/10;
  font-size: 20px;
  font-weight: var(--font-weight-light);
  color: #ddd;
}
.timeline__caption {
  margin-bottom: 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 20%;
  color: #666;
}
.timeline__caption-time {
  grid-column: span 1;
}
.timeline__caption-friction {
  grid-column: span 5;
}
.timeline__caption-mechanism {
  grid-column: span 6;
}
.timeline__row {
  padding: 48px 0;
  border-top: 1px solid #2b2b2b;
}
.timeline__row-time {
  grid-column: span 1;
  font-size: 18px;
  color: #666;
}
.timeline__row-friction {
  grid-column: span 4;
  font-size: 18px;
  color: #ddd;
}
.timeline__row-mechanism {
  grid-column: 7/10;
  font-size: 18px;
  color: #ddd;
}
.timeline__row-feature {
  grid-column: 11/13;
}
.timeline__row-label {
  display: inline-block;
  padding: 0 4px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .timeline {
    padding: 80px 0;
  }
  .timeline__header {
    margin-bottom: 56px;
  }
  .timeline__title {
    margin-bottom: 32px;
    font-size: 40px;
  }
  .timeline__caption {
    display: none;
  }
  .timeline__row {
    padding: 40px 0;
  }
  .timeline__row-time {
    margin-bottom: 8px;
  }
  .timeline__row-friction {
    margin-bottom: 24px;
  }
  .timeline__row-mechanism {
    margin-bottom: 8px;
  }
}

.layer {
  margin: 160px 0;
}
.layer__header {
  margin-bottom: 96px;
}
.layer__title {
  grid-column: span 8;
  margin: 0;
  font-size: 56px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
}
.layer__island {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  grid-column: span 6;
  padding: 48px 48px 56px;
  border-radius: 8px;
  background-color: #fafafa;
}
.layer__island--dark {
  background-color: var(--color-dark);
}
.layer__caption {
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 20%;
  color: #666;
}
.layer__name {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
}
.layer__island--dark .layer__name {
  color: #fff;
}
.layer__description {
  width: 50%;
  margin-top: 24px;
  font-size: 18px;
  color: #ddd;
}
.layer__negative {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-top: auto;
  font-size: 18px;
  color: #333;
}
.layer__negative + .layer__negative {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.layer__negative-icon {
  flex-shrink: 0;
}
.layer__positive {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-top: auto;
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: #fff;
}
.layer__positive + .layer__positive {
  margin-top: 24px;
}
.layer__positive-icon {
  flex-shrink: 0;
}
.layer__backdrop {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}
@media (max-width: 1279px) {
  .layer {
    margin: 120px 0;
  }
}
@media (max-width: 1023px) {
  .layer {
    margin: 80px 0;
  }
  .layer__header {
    margin-bottom: 56px;
  }
  .layer__title {
    font-size: 40px;
  }
  .layer__island + .layer__island {
    margin-top: 32px;
  }
}
@media (max-width: 479px) {
  .layer__island {
    padding: 32px;
  }
  .layer__description {
    width: 100%;
  }
  .layer__backdrop {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.1;
  }
}

.source {
  margin: 160px 0;
  align-items: center;
}
.source__description {
  grid-column: span 5;
}
.source__title {
  margin: 0 0 64px;
  font-size: 40px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-heading);
}
.source__feature {
  display: flex;
  align-items: flex-start;
  column-gap: 32px;
}
.source__feature + .source__feature {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.source__feature-icon {
  flex-shrink: 0;
}
.source__feature-name {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
}
.source__feature-description {
  color: #333;
}
.source__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 32px;
  grid-column: 7/13;
  min-height: 600px;
  padding: 40px;
  background-color: #009393;
  border-radius: 8px;
}
.source__media-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 440px;
  min-height: 112px;
  padding: 40px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 20%;
  background-color: #fff;
  border-radius: 8px;
}
.source__media-item + .source__media-item::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  height: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1279px) {
  .source {
    margin: 120px 0;
  }
}
@media (max-width: 1023px) {
  .source {
    margin: 80px 0;
  }
  .source__description {
    margin-bottom: 64px;
  }
}
@media (max-width: 479px) {
  .source__media {
    min-height: auto;
    padding: 24px;
  }
  .source__media-item {
    min-height: 96px;
    padding: 24px;
  }
}

.cerberus {
  padding: 120px 0;
  background-color: var(--color-dark);
}
.cerberus__header {
  margin-bottom: 64px;
}
.cerberus__title {
  grid-column: span 6;
  margin: 0;
  font-size: 80px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
  color: #fff;
}
.cerberus__divider {
  margin-bottom: 56px;
}
.cerberus__divider-label {
  display: inline-block;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  background-color: var(--color-primary);
}
.cerberus__divider-col {
  grid-column: span 6;
  border-bottom: 1px solid #2b2b2b;
}
.cerberus__headline {
  margin-bottom: 120px;
}
.cerberus__headline-caption {
  grid-column: span 5;
  font-size: 32px;
  color: #fff;
}
.cerberus__headline-description {
  grid-column: 7/12;
  font-size: 20px;
  color: #ddd;
}
.cerberus__item {
  padding: 0;
}
.cerberus__item + .cerberus__item {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid #2b2b2b;
}
.cerberus__item-left {
  display: flex;
  align-items: center;
  column-gap: 32px;
  grid-column: span 6;
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
}
.cerberus__item-num {
  color: #444;
}
.cerberus__item-name {
  color: #fff;
}
.cerberus__item-description {
  grid-column: 7/12;
  font-size: 18px;
  font-weight: var(--font-weight-light);
  color: #ddd;
}
@media (max-width: 1279px) {
  .cerberus__title {
    font-size: 56px;
  }
}
@media (max-width: 1023px) {
  .cerberus {
    padding: 80px 0;
  }
  .cerberus__title {
    font-size: 40px;
  }
  .cerberus__divider-col:last-child {
    display: none;
  }
  .cerberus__headline {
    margin-bottom: 80px;
  }
  .cerberus__headline-caption {
    margin-bottom: 32px;
  }
  .cerberus__item-left {
    margin-bottom: 24px;
  }
  .cerberus__item-num {
    display: none;
  }
}

.cta {
  padding: 120px 0 144px;
  background-color: var(--color-primary);
}
.cta__header {
  margin-bottom: 56px;
}
.cta__title {
  grid-column: span 7;
  margin: 0;
  font-size: 56px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
}
.cta__subtitle {
  grid-column: span 5;
  font-size: 28px;
  font-weight: var(--font-weight-light);
}
.cta__action {
  grid-column: span 7;
}
.cta__btn {
  display: inline-block;
  height: 64px;
  padding: 0 48px;
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  line-height: 64px;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-dark);
  border-radius: 32px;
  transition: color 0.15s, background-color 0.15s;
}
.cta__btn:hover {
  background-color: #333;
}
@media (max-width: 1279px) {
  .cta {
    padding: 120px 0;
  }
  .cta__title {
    grid-column: span 12;
  }
  .cta__subtitle {
    grid-column: span 7;
  }
  .cta__action {
    grid-column: span 5;
  }
}
@media (max-width: 1023px) {
  .cta {
    padding: 80px 0;
  }
  .cta__header {
    margin-bottom: 24px;
  }
  .cta__title {
    font-size: 40px;
  }
  .cta__subtitle {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .cta__btn {
    height: 48px;
    padding: 0 32px;
    font-size: 16px;
    line-height: 48px;
  }
}

/*# sourceMappingURL=axiym.css.map */
