.mix-match__title {
  font-family: "Gilroy";
  font-weight: 900;
  font-size: 48px;
  line-height: calc(54 / 48);
  color: #1c4e9d;
}

.mix-match__line {
  background-color: #fff39d;
  height: 4px;
  flex: 1;
}

.mix-match {
  display: block !important;
}

.mix-match__description {
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 20px;
  line-height: calc(26 / 20);
  color: #000;
}

.mix-match__heading {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 25.75px;
  flex-wrap: nowrap;
}

.mix-match__intro {
  margin-bottom: 65px;
  padding: 0;
}

.mix-match__step {
  display: flex;
  flex-wrap: wrap;
}

.mix-match__slider {
  width: calc((440 / 966) * 100%);
  background: #ffffff;
  border-radius: 12.63px;
  overflow: hidden;
}

.mix-match__slider {
  display: flex;
  justify-content: center;
  position: relative;
  aspect-ratio: 333 / 315;
  display: none;
  width: 100%;
}

.mix-match__number span {
  font-family: "Gilroy";
  font-weight: 800;
  font-size: clamp(85px, 8.611vw, 124px);
  letter-spacing: 0.07em;
  line-height: 1em;
  color: #bfb676;
  transition: all 0.3s ease-in-out;
  opacity: 0.15;
}

.mix-match__number {
  margin-bottom: 45px;
}

.mix-match__number p {
  display: flex;
  gap: 11px;
}

.mix-match__number span {
  transition: all 300ms ease-in-out;
}

.mix-match__number span.is-highlighted {
  color: #fff39d;
  opacity: 1;
}

.mix-match__content--main {
  flex: 1;
  padding-left: 30px;
  padding-top: 0;
  height: auto
}

.mix-match__name {
  font-family: "Gilroy";
  font-weight: 900;
  font-size: clamp(24px, 4.167vw, 60px);
  letter-spacing: 0.05em;
  line-height: calc(76 / 60);
  margin-bottom: 14px;
  padding-left: 5px;
  color: #1c4e9d;
}

.mix-match__content {
  color: #1c4e9d;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: clamp(20px, 1.944vw, 28px);
  line-height: calc(35 / 28);
  letter-spacing: 0.04em;
  padding: 0;
  margin: -2px 0 0;
}

.mix-match__content>*:last-child {
  margin: 0 0 20px;
}

.mix-match__content ul {
  padding: 0 0 0 67px;
  margin: 0;
  list-style: none !important;
}

.mix-match__content li,
.mix-match__content p {
  margin-bottom: 0;
  font-family: 'Gilroy';
  font-weight: 500;
  font-size: 16.9794px;
  line-height: 21px;
  letter-spacing: 0.02em;
  color: #FDFDFD;
}

.mix-match__content p {
  text-align: center;
}

.mix-match__content ul {
  list-style: disc;
  /* margin-left: 42px; */
}

.mix-match__content a {
  display: inline-block;
  background: var(--Primary, #1c4e9d);
  border-radius: 30px;
  padding: 10px 30px 8px 30px;
  color: #fff39d;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: clamp(18px, 1.389vw, 20px);
  line-height: 30px;
  letter-spacing: 0.02em;
  margin-top: 10px;
  transition: all .3s ease-in-out;
}

.mix-match__content a:hover {
  background: #1E2F77;
  color: #FFF39D;
}

.mix-match__img {
  position: relative;
  z-index: 2;
}

.mix-match__shape {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32.82%;
  background-color: var(--accent-color);
}

.mix-match__track {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 100px;

  animation-name: slideUpDown;
  animation-duration: var(--slide-duration, 2s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.mix-match__img {
  display: block;
}

@keyframes slideUpDown {
  0% {
    transform: translate(-50%, -50%) translateY(30%);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-30%);
  }

  100% {
    transform: translate(-50%, -50%) translateY(30%);
  }
}

.mix-match__main-steps {
  width: 345.67px;
}

.mix-match__step {
  margin-bottom: 11px;
  background-color: #fbfbf9;
  background: inherit;
  width: 100%;
}

.mix-match__step--02 .mix-match__shape {
  width: 31.82%;
  height: 160%;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: var(--accent-color)
}

.mix-match__step--02 .mix-match__track {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mix-match__step--02 .mix-match__track {
  animation-name: slideAlongLine;
  animation-duration: var(--slide-duration, 3s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation: none;
}

@keyframes slideAlongLine {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) translateY(20%);
  }

  50% {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-20%);
  }

  100% {
    transform: translate(-50%, -50%) rotate(45deg) translateY(20%);
  }
}

.mix-match__step--02 .mix-match__img {
  display: block;
  transform: none;
}

.mix-match__step--02 .mix-match__track {
  animation-timing-function: linear;
}

/* =========================
  STEP 03 – CURVED SHAPE
========================= */

.mix-match__step--03 .mix-match__slider {
  position: relative;
  overflow: hidden;
}

/* =========================
  STEP 03 – ARC SHAPE (STROKE)
========================= */

.mix-match__step--03 .mix-match__shape {
  position: absolute;
  width: 162%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 110px solid #FFF39D;
	border-color: var(--accent-color) !important;
  border-radius: 50%;
  box-sizing: border-box;
  right: unset;
  top: 34px;
  left: 38px;
  transform: none;
}

.mix-match__step--03 .mix-match__img {
  position: absolute;
  top: 100px;
  left: 100px;
  transform: translateX(-100px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  transform: none;
  max-width: none;
}

.mix-match__step--03 .mix-match__track {
  width: 162%;
  left: 38px;
  top: 34px;
  animation: none;
  aspect-ratio: 1 / 1;
}

.mix-match__step--03 .mix-match__track img {
  max-width: 200px;
}

.mix-match__step--03 .mix-match__slider {
  /* overflow: visible; */
}

.mix-match__step--03 .mix-match__track-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.mix-match__step--03 .mix-match__img img {
  max-width: 321px;
}

.mix-match {
  position: relative;
}

.mix-match__step {
  position: sticky;
  align-items: stretch;
  top: 0;
  /*   height: 100vh; */
  z-index: 1;
  transition: transform 300ms ease-in-out;
}

.mix-match__step:last-child {
  /* 	height: auto; */
}

.mix-match__step--01 {
  z-index: 1;
}

.mix-match__step--01 .mix-match__track {
  width: 100%;
  display: flex;
  justify-content: center;
}

.mix-match__step--01 .mix-match__track-inner {
  width: max-content;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.mix-match__step:last-child {
  margin: 0;
}

.mix-match__step--01 .mix-match__track img {
  width: 100%;
  max-width: 230px;
}

.mix-match__step--01 .mix-match__track img:nth-child(1) {
  max-width: 340px;
}

.mix-match__step--01 .mix-match__track img:not(:last-child) {
  margin-right: 30px;
}

.mix-match__step--02 {
  z-index: 2;
}

.mix-match__step--03 {
  z-index: 3;
}

.mix-match__step.is-active {
  /* transform: translateY(0); */
}

.mix-match__step.is-inactive {
  transform: translateY(100%);
}

.mix-match__arrow {
  display: none;
}

.mix-match__main {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-end;
  padding-right: 8%;
}

.mix-match__details {
  width: calc(100% - 379.67px);
}

.mix-match__details h3 {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 136%;
  color: #1C4E9D;
  margin: 0 0 22px;
}

.mix-match__details p {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0.01em;
  color: #000000;
}

.mix-match__details-btn {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFF39D;
  padding: 8px 24px 6px;
  background: #1C4E9D;
  border-radius: 30px;
  margin: 0 0 34px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.mix-match__details-btn:hover {
  color: #FFF39D;
  background-color: #1E2F77;
}

.mix-match__details-desc {
  margin: 0 0 44px;
}

.mix-match__step {
  position: static;
  left: 0;
  right: 0;
  transform: translateY(20%);
  transition: all 0.8s ease-in-out !important;
}

.mix-match__step.first {
  transform: translateY(0%);
  pointer-events: all;
}

.mix-match__step--01,
.mix-match__step.active {
  opacity: 1;
  transform: translateY(0px) !important;
  pointer-events: all;
}

.mix-match__step--03 .mix-match__track-inner {
  transform-origin: center;
  animation: rotate 20s infinite linear 0.5s;
}

.mix-match__step--03 .mix-match__track-inner.active {
  animation: rotate 20s infinite linear 0.5s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mix-match__step--01 .mix-match__track,
.mix-match__step--02 .mix-match__track {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.mix-match__step--01 .mix-match__track {
  transform: translate(-50%, -50%);
}

.mix-match__step--02 .mix-match__track img {
  margin: 0 0 30px;
}

.mix-match__track-loop {
  animation: step2_slip 7s backwards infinite linear;
}

.mix-match__track-loop:last-child img:last-child {
  margin-bottom: 0;
}

.mix-match__step--01 .mix-match__track {
  animation: none;
}

.mix-match__step--01 .mix-match__track-loop {
  animation: step1_slip 6s backwards infinite linear;
}

.mix-match__slider,
.mix-match__content {
  transition: none !important;
  overflow: hidden;
}

.mix-match__step.active .mix-match__slider,
.mix-match__step.active .mix-match__content {
  height: var(--height);
}

@keyframes step2_slip {
  0% {
    transform: translate(0%);
  }

  100% {
    transform: translateY(calc(-100% - 30px));
  }
}

@keyframes step1_slip {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.mix-match__content {
  display: none;
}

.mix-match__name {
  font-family: 'Gilroy';
  font-weight: 900;
  font-size: 20.8352px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: #FDFDFD;
  margin: 0;
  text-align: center;
  padding: 10px;
}

.mix-match__step {
  padding: 15.9182px 83.8356px;
  gap: 18.61px;
  background: var(--bg-color);
  border-radius: 8.48968px;
  padding: 6px;
  cursor: pointer;
}

.mix-match__content--main {
  padding: 0;
}

.mix-match__details-nums {
  display: flex;
  align-items: center;
  margin: 0 0 -10px;
  transition: all 0.3s ease-in-out;
}

.mix-match__details-num {
  font-family: Gilroy;
  font-weight: 800;
  font-size: 7.35rem;
  letter-spacing: 0.07em;
  line-height: 1em;
  color: rgb(191, 182, 118);
  opacity: 0.15;
  transition: 0.7s ease-in-out;
  color: #686868;
  opacity: 0.1;
  cursor: pointer;
}

.mix-match__details-num:hover,
.mix-match__details-num.sactive {
  opacity: 1;
  color: #1C4E9D;
}

.mix-match__details-btns {
  overflow: hidden;
	opacity: 1;
}

.mix-match__details-btns.hidden {
	opacity: 0;
}

.mix-match__step.sactive {
  box-shadow: 7.50818px 7.50818px 15.0164px rgba(0, 0, 0, 0.25);
}

.mix-match__step--01 .mix-match__shape {
  width: 100%;
  height: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mix-match__step--01 .mix-match__track-loop {
  display: flex;
  align-items: center;
  flex-direction: row;
	    width: fit-content;
}

.mix-match__slider {
  min-width: 100%;
}

@media (max-width: 1300px) {
  .mix-match__details-num {
    font-size: 4rem;
  }
}

@media (max-width: 1200px) {
  .mix-match__step:not(.mix-match__step--03) .mix-match__img {
    max-width: 100%;
    margin: 0 auto;
  }

  .mix-match__step--03 .mix-match__shape {
    border: 120px solid #1c4e9d;
  }
}

@media (max-width: 1024px) {
  .mix-match__step--03 .mix-match__shape {
    border: 110px solid #FFF39D;
  }
}

@media (min-width: 768px) {
  .mix-match__step {
    position: static;
    transform: none !important;
  }

  .mix-match__main-steps {
    position: static;
  }

  .mix-match__main-placeholders {
    display: none;
  }

  .mix-match__main-steps {
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .mix-match__slider {
    width: 100%;
  }

  .mix-match__container {
    /*         padding: 0 10px; */
  }

  .mix-match__wrapper,
  .mix-match__step {
    /* background-color: #fff39d; */
  }

  .mix-match__wrapper {
    /*         padding: 29px 5px 0; */
    /*         border-radius: 16.67px; */
  }

  .mix-match__slider {
    border-radius: 13.09px;
    box-shadow: 7.78px 7.78px 15.57px 0px #00000040;
    background-color: #FFFFFF;
  }

  .mix-match__intro {
    padding-left: 6px;
    margin-bottom: 20px;
  }

  .mix-match__heading {
    margin-bottom: 3px;
  }

  .mix-match__step {
    margin: 0 auto !important;
    align-content: flex-start;
  }

  .mix-match__number span {
    color: #1c4e9d;
  }

  .mix-match__number span.is-highlighted {
    color: #1c4e9d;
  }

  .mix-match__details-nums {
    display: none;
  }

  .mix-match__number p {
    justify-content: space-between;
  }

  .mix-match__number {
    margin-bottom: 22.67px;
  }

  .mix-match__step {
    height: 100%;
  }

  .mix-match__content ul {
    padding: 0;
  }

  .mix-match__content ul li {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
  }

  /* .mix-match__content ul li::after {
    position: absolute;
    content: "|";
    right: -3px;
    top: 0;
  } */

  .mix-match__content ul li:last-child {
    padding: 0;
    margin: 0;
  }

  .mix-match__content ul li:last-child::after {
    display: none
  }

  .mix-match__name,
  .mix-match__content {
    text-align: center;
  }

  .mix-match__name {
    margin-bottom: 0;
    padding: 10px 10px 9px;
  }

  .mix-match__content {
    font-weight: 500;
  }

  .mix-match__content>*:last-child {
    margin: 0 0 14px;
  }

  .mix-match__arrow {
    position: relative;
    display: flex;
    justify-content: center;

    margin-top: 32px;

    opacity: 0;
    transform: translateY(10px);

    pointer-events: none;
  }

  .mix-match__arrow.is-visible {
    opacity: 1;
    pointer-events: auto;

    animation: arrow-fade-in 300ms ease-in-out forwards,
      arrow-bounce 1.4s ease-in-out infinite;
  }

  /* Fade in */
  @keyframes arrow-fade-in {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes arrow-bounce {
    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0);
    }
  }

  .mix-match__button {
    display: flex;
    justify-content: center;
  }

  .mix-match__step:last-child {
    height: auto;
    top: unset;
  }

  .mix-match__content--main {
    padding-left: 0;
    background: inherit;
  }

  .mix-match__number span {
    line-height: 1;
  }

  /* 	.mix-match__step .mix-match__slider {
    visibility: hidden;
  }

  .mix-match__step.animations-ready .mix-match__slider {
    visibility: visible;
  } */
  .mix-match__step--03 .mix-match__track img {
    max-width: 195px;
  }

  @keyframes step2_slip {
    0% {
      transform: translate(0%);
    }

    100% {
      transform: translateY(-100%);
    }
  }

  .mix-match__step {
    transform: none !important;
    margin: 0 0 10px !important;
    border-radius: 8.48968px;
  }



  .mix-match__step--01 .mix-match__track img {
    max-width: 240px !important;
  }

  .mix-match__step--01 .mix-match__track img:nth-child(1) {
    max-width: 300px !important;
  }

  .mix-match__main {
    padding: 0;
  }

  .mix-match__main-steps {
    width: 100%;
    height: auto !important;
  }

  .mix-match__details {
    width: 100%;
  }

  .mix-match__step--01 {
    gap: 2px;
  }

  .mix-match__details h3,
  .mix-match__details-desc {
    display: none;
  }

  .mix-match__details>div:has(.mix-match__details-btn) {
    text-align: center;
  }

  .mix-match__content ul li:last-child,
  .mix-match__content ul li {
    padding: 0 calc((100% - 202px) / 2);
    text-align: left;
  }

  .mix-match__step.sactive {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
	.mix-match__details-btn {
		margin: 0 0 50px;
	}
		.hidden>.mix-match__details-btn {
		margin: 0 0 10px;
	}
}