.mks-hero {
  width: 100%;
}
.mks-hero__bg-gradient {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--mks-color-secondary-50), rgba(255, 255, 255, 0));
}
.mks-hero__rating {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.mks-hero__rating img {
  height: 2.5rem;
  width: auto;
}
@media screen and (max-width: 1200px) {
  .mks-hero__rating img {
    height: 2rem;
  }
}
.mks-hero__main-title {
  color: var(--mks-color-secondary-950);
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
@media screen and (max-width: 1200px) {
  .mks-hero__main-title {
    font-size: 1.625rem;
  }
}
.mks-hero__slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .mks-hero__slider {
    max-width: 72rem;
  }
}
@media screen and (max-width: 1200px) {
  .mks-hero__slider {
    display: none;
  }
}
.mks-hero__slider__slide {
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--mks-color-white);
  border-radius: 0.5rem;
  border: 1px solid var(--mks-color-neutral-200);
}
.mks-hero__slider__slide__title {
  color: var(--mks-color-secondary-950);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 0.125rem;
}
.mks-hero__slider__slide__description {
  color: var(--mks-color-neutral-800);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 1.25rem;
}
.mks-hero__slider__slide__description span.material-symbols-outlined {
  font-size: 1rem;
}
.mks-hero__slider__slide__img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.125rem;
  margin-bottom: 1.25rem;
}
.mks-hero__slider__slide__cta {
  background: var(--mks-color-primary-600);
  color: var(--mks-color-white);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  display: flex;
  gap: 0.25rem;
  padding: calc(0.3125rem - 2px) calc(1rem - 2px);
  border-radius: 999rem;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border: solid 2px transparent;
}
.mks-hero__slider__slide__cta:hover {
  background: transparent;
  color: var(--mks-color-primary-600);
  border: solid 2px var(--mks-color-primary-600);
}
.mks-hero__slider--mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mks-hero__slider--mobile {
    display: flex;
  }
}
.mks-hero__slider--mobile .mks-hero__slider__slide__img {
  width: 100%;
  height: auto;
}
.mks-hero__slider--mobile .mks-hero__slider__slide__cta {
  box-sizing: border-box;
  padding: 0.3125rem 1rem;
  width: 100%;
}
.mks-hero__slider--mobile .mks-hero__slider__button-prev, .mks-hero__slider--mobile .mks-hero__slider__button-next {
  background: var(--mks-color-secondary-950);
  color: var(--mks-color-white);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999rem;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}
.mks-hero__slider--mobile .mks-hero__slider__button-prev span.material-symbols-outlined, .mks-hero__slider--mobile .mks-hero__slider__button-next span.material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 1;
}
.mks-hero__slider--mobile .mks-hero__slider__button-prev {
  left: 1rem;
  transform: translateY(-50%);
}
.mks-hero__slider--mobile .mks-hero__slider__button-prev span.material-symbols-outlined {
  transform: translateX(-1px);
}
.mks-hero__slider--mobile .mks-hero__slider__button-next {
  right: 1rem;
  transform: translateY(-50%);
}
.mks-hero__slider--mobile .mks-hero__slider__button-next span.material-symbols-outlined {
  transform: translateX(1px);
}
.mks-hero__reassurances {
  width: 100%;
  max-width: 1300px;
  margin: 4rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
}
@media screen and (max-width: 1440px) {
  .mks-hero__reassurances {
    max-width: 72rem;
  }
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances {
    max-width: calc(100% - 2rem);
    flex-direction: column;
    margin: 3rem auto;
    gap: 0.5rem;
  }
}
.mks-hero__reassurances__separator {
  display: block;
  width: 1px;
  height: 5.125rem;
  background-color: var(--mks-color-neutral-200);
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances__separator {
    height: 1.25rem;
  }
}
.mks-hero__reassurances__item {
  display: grid;
  grid-template-columns: 5.125rem auto;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances__item {
    grid-template-columns: auto;
  }
}
.mks-hero__reassurances__item__img {
  width: 5.125rem;
  height: 5.125rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances__item__img {
    display: none;
  }
}
.mks-hero__reassurances__item__text {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances__item__text {
    flex-direction: row;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
  }
}
.mks-hero__reassurances__item__text__title {
  color: var(--mks-color-secondary-950);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances__item__text__title {
    font-weight: 600;
    font-size: 0.875rem;
  }
}
.mks-hero__reassurances__item__text__description {
  color: var(--mks-color-neutral-500);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media screen and (max-width: 1200px) {
  .mks-hero__reassurances__item__text__description {
    font-size: 0.875rem;
  }
}
.mks-hero .swiper {
  width: 100%;
  height: fit-content;
}
.mks-hero .swiper .swiper-slide {
  width: 70dvw;
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
  transform: scale(0.9);
  position: relative;
  overflow: hidden;
}
.mks-hero .swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--mks-color-black);
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}
.mks-hero .swiper .swiper-slide-active {
  transform: scale(1);
}
.mks-hero .swiper .swiper-slide-active:after {
  opacity: 0;
}

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