.u-mobile {
  display: none;
}

@media (max-width: 767px) {
  .u-desktop {
    display: none;
  }

  .u-mobile {
    display: inline;
  }
}

.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/index/hero-bg.png") center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.hero__person {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.hero__person--left {
  left: calc(50% - 810px);
  top: 12px;
  width: 603px;
  height: 904px;
}

.hero__person--right {
  left: calc(50% + 227px);
  top: 104px;
  width: 580px;
  height: 800px;
}

.hero__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .hero__title .plate--h1 {
    font-size: 74px;
    letter-spacing: 1.95px;
  }
}

@keyframes hero-person-left-in {
  from {
    opacity: 0;
    transform: translateX(-90px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-person-right-in {
  from {
    opacity: 0;
    transform: translateX(90px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__person--left {
  animation: hero-person-left-in 0.9s ease-out both;
}

.hero__person--right {
  animation: hero-person-right-in 0.9s ease-out 0.15s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero__person--left,
  .hero__person--right {
    animation: none;
  }
}

.hero__title {
  position: absolute;
  left: 50%;
  top: 232px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 824px;
  max-width: calc(100% - 48px);
}

.hero__title .plate:nth-child(2) {
  margin-left: 90px;
}

.hero__title .plate:nth-child(3) {
  margin-left: 58px;
}

.hero__badge {
  position: absolute;
  z-index: 6;
}

.hero__badge--left {
  left: calc(50% - 558px);
  top: 553px;
}

.hero__badge--right {
  left: calc(50% + 358px);
  top: 601px;
}

.hero__btn {
  position: absolute;
  left: 50%;
  top: 640px;
  transform: translateX(-50%);
  z-index: 6;
  width: 256px;
}

.hero__btn:active {
  transform: translateX(-50%) translateY(1px);
}

@media (max-width: 1199px) {
  .hero__badge--left {
    left: 24px;
  }

  .hero__badge--right {
    left: auto;
    right: 24px;
  }

  .hero__title {
    width: 590px;
  }

  .hero__title .plate:nth-child(2) {
    margin-left: 56px;
  }

  .hero__title .plate:nth-child(3) {
    margin-left: 36px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 700px;
  }

  .hero__person--left {
    left: -92px;
    top: 220px;
    width: 316px;
    height: 537px;
  }

  .hero__person--right {
    left: auto;
    right: -94px;
    top: 270px;
    width: 311px;
    height: 467px;
  }

  .hero__title {
    top: 120px;
    align-items: center;
    gap: 10px;
    width: 342px;
  }

  .hero__title .plate:nth-child(2),
  .hero__title .plate:nth-child(3) {
    margin-left: 0;
  }

  .hero__badge--left {
    top: 480px;
  }

  .hero__badge--right {
    top: 495px;
  }

  .hero__btn {
    top: 612px;
    width: calc(100% - 48px);
    max-width: 342px;
  }
}

.stream {
  padding: 72px 0;
  background: var(--color-white);
}

.stream__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.stream__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  max-width: 567px;
}

.stream__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.stream__list-title {
  margin-bottom: 18px;
}

.stream__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stream__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stream__item img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.stream__btn {
  width: 256px;
}

.stream__banner {
  flex-shrink: 0;
  width: 495px;
  aspect-ratio: 1 / 1;
}

.stream__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .stream__banner {
    width: 40%;
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .stream {
    padding: 32px 0;
  }

  .stream__inner {
    flex-direction: column;
    gap: 32px;
  }

  .stream__content {
    gap: 32px;
  }

  .stream__head {
    gap: 15px;
  }

  .stream__head .plate-group {
    align-items: flex-start;
  }

  .stream__item {
    align-items: flex-start;
  }

  .stream__btn {
    width: 100%;
  }

  .stream__banner {
    width: 100%;
    min-width: 0;
  }
}

.if {
  padding: 72px 0;
  background: var(--color-shade-5);
}

.if__title-wrap {
  text-align: center;
}

.if__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.if__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 392px;
  text-align: center;
}

.if__icon {
  width: 86px;
  height: 86px;
}

.if__card-title {
  color: var(--color-navy);
}

@media (max-width: 1199px) {
  .if__card {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .if {
    padding: 32px 0;
    background: var(--color-bg-light);
  }

  .if__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }

  .if__card {
    flex: none;
    width: 100%;
    max-width: 392px;
  }
}

.system {
  overflow: hidden;
  padding: 72px 0;
  background: var(--color-white);
}

.system__title-wrap {
  text-align: center;
}

.system__scheme {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.system__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.system__col--right {
  text-align: right;
}

.system__point-title {
  margin-bottom: 12px;
  color: var(--color-navy);
}

.system__point-text {
  font-size: 16px;
  line-height: 22px;
}

.system__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.system__arrows {
  flex-shrink: 0;
  width: 144px;
  height: 272px;
}

.system__arrows--left {
  transform: scaleX(-1);
}

.system__core {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.system__arrow-v {
  display: none;
  width: 16px;
  height: 44px;
}

.system__arrow-v--up {
  transform: rotate(180deg);
}

.system__curator {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

@media (max-width: 1199px) {
  .system__scheme {
    grid-template-columns: 1fr auto 1fr;
  }

  .system__arrows {
    display: none;
  }
}

@media (max-width: 767px) {
  .system {
    padding: 32px 0;
  }

  .system__title-wrap .plate-group {
    align-items: center;
  }

  .system__scheme {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
  }

  .system__col {
    gap: 32px;
    text-align: center;
  }

  .system__col--right {
    text-align: center;
  }

  .system__center {
    flex-direction: column;
    gap: 32px;
  }

  .system__arrow-v {
    display: block;
  }

  .system__curator {
    margin-top: 32px;
  }

  .system__curator .plate {
    white-space: nowrap;
  }
}

.teachers {
  position: relative;
  height: 670px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.teachers__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding-top: 72px;
  margin-left: 54px;
  max-width: 510px;
}

.teachers__tabs {
  display: grid;
  grid-template-columns: repeat(2, 184px);
  gap: 24px;
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
  color: var(--color-black);
  background: var(--color-shade-5);
  transition: background-color var(--transition), color var(--transition),
    box-shadow var(--transition);
}

.tab:hover {
  background: rgba(0, 0, 0, 0.1);
}

.tab--active,
.tab--active:hover {
  font-weight: 600;
  color: var(--color-navy-text);
  background: var(--color-white);
  filter: drop-shadow(var(--shadow-btn));
}

.teachers__media {
  position: absolute;
  left: calc(50% + 23px);
  top: 31px;
  width: 520px;
  height: 861px;
}

.teachers__name {
  position: absolute;
  left: -11px;
  top: 309px;
  z-index: 3;
  font-size:28px;
}

.teachers__badge--result {
  position: absolute;
  left: 42px;
  top: 486px;
  z-index: 3;
  width: 156px;
}

.teachers__badge--score {
  position: absolute;
  left: 404px;
  top: 414px;
  z-index: 3;
  width: 185px;
}

@media (max-width: 1199px) {
  .teachers {
    height: auto;
    padding-bottom: 0;
  }

  .teachers__content {
    max-width: none;
    margin-left: 0;
    align-items: center;
  }

  .teachers__tabs {
    grid-template-columns: repeat(auto-fit, 184px);
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .teachers__media {
    position: relative;
    left: auto;
    top: auto;
    width: 396px;
    height: 600px;
    margin: 40px auto 0;
  }

  .teachers__name {
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
  }

  .teachers__badge--result {
    left: -2px;
    top: auto;
    bottom: 84px;
    width: 127px;
  }

  .teachers__badge--score {
    left: auto;
    right: 5px;
    top: auto;
    bottom: 52px;
    width: 152px;
  }
}

@media (max-width: 767px) {
  .teachers__content {
    align-items: center;
    gap: 44px;
    padding-top: 32px;
  }

  .teachers__title-wrap .plate-group {
    align-items: center;
  }

  .teachers__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .tab {
    width: 100%;
    padding: 10px 8px;
  }

  .teachers__media {
    max-width: 100%;
  }
}

.students {
  position: relative;
  padding: 72px 0 0;
  background: var(--color-white);
  overflow: hidden;
}

.students__title-wrap {
  text-align: center;
}

.students__slider {
  position: relative;
  margin-top: 48px;
}

.students__track {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  margin: -40px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.students__track::-webkit-scrollbar {
  display: none;
}

.student-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 288px;
  height: 500px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.student-card__photo {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.student-card--white .student-card__photo {
  background: var(--color-white);
}

.student-card__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.student-card--white .student-card__photo img {
  margin-top: 20px;
}

.student-card__name {
  padding: 18px 24px 0;
  white-space: nowrap;
}

.student-card__name--long {
  font-size: 21px;
}

.student-card__scores {
  display: flex;
  gap: 24px;
  padding: 14px 24px 0;
}

.score {
  position: relative;
  width: 108px;
  padding-top: 17px;
}

.score__box {
  height: 60px;
  padding: 11px 12px 10px;
}

.score::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 22px solid transparent;
}

.score--start .score__box {
  background: var(--color-bg-stat);
  color: var(--color-black);
}

.score--start::before {
  left: 0;
  border-bottom-color: var(--color-bg-stat);
  border-right: 20px solid transparent;
}

.score--grant .score__box {
  background: var(--color-accent);
  color: var(--color-white);
  text-align: right;
}

.score--grant::before {
  right: 0;
  border-bottom-color: var(--color-accent);
  border-left: 20px solid transparent;
}

.score__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.score__label {
  font-size: 14px;
  line-height: 22px;
}

.student-card__divider {
  margin-top: 23px;
  border: none;
  border-top: 1px dashed var(--color-accent);
}

.student-card__uni {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.students__arrow {
  position: absolute;
  top: 473px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: opacity var(--transition), background-color var(--transition);
}

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

.students__arrow--prev {
  left: 0;
  background: var(--color-bg-light);
}

.students__arrow--next {
  right: 0;
  background: var(--color-navy);
}

.students__arrow--next img {
  transform: rotate(180deg);
}

.students__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.students__progress {
  position: relative;
  height: 4px;
  margin-top: 28px;
  background: var(--color-bg-light);
}

.students__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 25%;
  background: var(--color-navy);
  transition: width 0.2s ease, transform 0.2s ease;
}

@media (max-width: 767px) {
  .students {
    padding: 32px 0;
  }

  .students__title-wrap .plate-group {
    align-items: center;
  }

  .students__slider {
    margin-top: 32px;
  }

  .students__track {
    gap: 16px;
    scroll-padding: 0 16px;
  }

  .student-card {
    flex: 0 0 82%;
    height: auto;
    scroll-snap-align: center;
  }

  .student-card__photo {
    height: auto;
    aspect-ratio: 342 / 445;
  }

  .student-card__photo img {
    height: 100%;
  }

  .student-card__scores {
    justify-content: space-between;
    gap: 0;
    padding-right: 48px;
  }

  .students__arrow {
    display: none;
  }
}

.tariffs {
  position: relative;
  padding: 72px 0;
  background: var(--color-white);
}

.tariffs__title-wrap {
  text-align: center;
}

.tariffs__person {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: none;
}

.tariffs__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tariffs__grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.tariff {
  position: relative;
  width: 392px;
  height: 840px;
  background-color: var(--color-bg-light);
  background-image: linear-gradient(to bottom, var(--color-shade-5), rgba(0, 0, 0, 0)),
    linear-gradient(to bottom, var(--color-shade-5), rgba(0, 0, 0, 0));
  background-position: 0 100px, 0 600px;
  background-size: 100% 102px, 100% 102px;
  background-repeat: no-repeat;
}

.tariff--featured {
  background-color: var(--color-white);
  filter: drop-shadow(var(--shadow-soft));
}
.tariff__top{
  display: flex;
   align-items: flex-start;
   flex-direction:column;
   justify-content: center;
   height: 100px;
   padding:0 30px;
}
.tariff__top span{
  background-color:#3661ff;
  color:#fff;
  padding:1px 8px;
  margin-bottom:5px;
  font-size:14px;
}
.tariff__name {
  font-size: 32px;
  letter-spacing: 0.8px;
}
.tariff__top p{
  font-size:15px;
  font-style:italic;
}
.tariff__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 25px 30px 0;
  height:495px;
}
.tariff__bot{
  padding:25px 30px;
} 
.tarriff__bonus{
  font-weight:bold;
  margin-bottom:-14px;
}
.tariff__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
}
.tariff__item {
  display: flex;
  line-height: 1.3;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.tariff__item img {
  width: 22px;
  height: 22px;
}

.tariff__price {
  top: 668px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-accent);
}
.tariff__price__old{
  font-weight: 700;
  text-decoration: line-through;
  font-size: 14px;
}
.tariff__price{
  margin-bottom:12px;
}
.tarrif__year{
  display:flex;
  justify-content: space-between;
  margin-bottom:1px;
  font-size:14px;
}
.tariff__year-ul{
  margin-bottom:15px;
}
.tariff__discount {
  position: absolute;
  top: -35px;
  right: -27px;
  width: 123px;
  height: auto;
}
.tariff__bot .btn{
  width:100%;
}

@media (min-width: 1200px) {
  .tariffs {
    overflow: hidden;
    padding-bottom: 0;
  }

  /* Фото по бокам скрыты: при трёх тарифах картам нужна вся ширина.
     Вернутся, если тарифов снова станет два */
  .tariffs__person {
    display: none;
  }

  .tariffs__grid {
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .tariffs {
    padding: 32px 0;
  }

  .tariffs__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }

  .tariff {
    width: 100%;
    max-width: 392px;
    height: 814px;
  }
  .tariff{
    height:auto;
  }
  .tariff__content {
    padding: 32px 24px;
    height:auto;
  }
  .tariff__bot {
    padding: 25px 30px;
    background-color: #cccccc87;
  }
  .tariff__btn {
    left: 24px;
    right: 24px;
  }

  .tariff__discount {
    top: -12px;
    right: -8px;
    width: 74px;
  }
}

.faq {
  padding: 72px 0;
  background: var(--color-bg-light);
}

.faq__title-wrap {
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1116px;
  margin: 48px auto 0;
}

.faq__question {
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 8px 0 8px 32px;
  text-align: left;
}

.faq__question-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  width: 72px;
  min-height: 68px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--color-shade-5));
}

.faq__toggle img {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__toggle img {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 32px 136px 32px 32px;
  font-size: 16px;
  line-height: 24px;
}

.faq__btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.faq__btn .btn {
  width: 312px;
}

@media (max-width: 767px) {
  .faq {
    padding: 32px 0;
  }

  .faq__title-wrap .plate-group {
    align-items: center;
  }

  .faq__list {
    gap: 16px;
    margin-top: 32px;
  }

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

  .faq__question {
    min-height: 75px;
    padding: 12px 0 12px 16px;
  }

  .faq__toggle {
    width: 56px;
    min-height: 75px;
    background: none;
  }

  .faq__answer-inner {
    padding: 4px 16px 24px;
  }

  .faq__btn {
    margin-top: 24px;
  }

  .faq__btn .btn {
    width: 100%;
  }
}

.teachers__media.is-anim .teachers__photo {
  opacity: 0;
  transform: translateY(40px);
}

.teachers__media.is-anim .teachers__name {
  opacity: 0;
}

.teachers__media.is-anim .teachers__badge--result,
.teachers__media.is-anim .teachers__badge--score {
  opacity: 0;
  transform: translateY(24px);
}

.teachers__media.is-inview .teachers__photo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.teachers__media.is-inview .teachers__name {
  opacity: 1;
  transition: opacity 0.5s ease-out 0.55s;
}

.teachers__media.is-inview .teachers__badge--score {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-out 0.7s, transform 0.5s ease-out 0.7s;
}

.teachers__media.is-inview .teachers__badge--result {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-out 0.85s, transform 0.5s ease-out 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  .teachers__media.is-anim .teachers__photo,
  .teachers__media.is-anim .teachers__name,
  .teachers__media.is-anim .teachers__badge--result,
  .teachers__media.is-anim .teachers__badge--score {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.system.is-anim .system__core {
  opacity: 0;
  transform: scale(0.85);
}

.system.is-anim .system__arrows,
.system.is-anim .system__arrow-v {
  opacity: 0;
}

.system.is-anim .system__col--left .system__point {
  opacity: 0;
  transform: translateX(-32px);
}

.system.is-anim .system__col--right .system__point {
  opacity: 0;
  transform: translateX(32px);
}

.system.is-anim .system__curator .plate-group {
  opacity: 0;
  transform: translateY(16px);
}

.system.is-inview .system__core {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.system.is-inview .system__arrows,
.system.is-inview .system__arrow-v {
  opacity: 1;
  transition: opacity 0.5s ease-out 0.25s;
}

.system.is-inview .system__col .system__point {
  opacity: 1;
  transform: translateX(0);
}

.system.is-inview .system__col .system__point:nth-child(1) {
  transition: opacity 0.5s ease-out 0.45s, transform 0.5s ease-out 0.45s;
}

.system.is-inview .system__col .system__point:nth-child(2) {
  transition: opacity 0.5s ease-out 0.6s, transform 0.5s ease-out 0.6s;
}

.system.is-inview .system__col .system__point:nth-child(3) {
  transition: opacity 0.5s ease-out 0.75s, transform 0.5s ease-out 0.75s;
}

.system.is-inview .system__curator .plate-group {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-out 1s, transform 0.5s ease-out 1s;
}

@media (prefers-reduced-motion: reduce) {
  .system.is-anim .system__core,
  .system.is-anim .system__arrows,
  .system.is-anim .system__arrow-v,
  .system.is-anim .system__col .system__point,
  .system.is-anim .system__curator .plate-group {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
