.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  position: relative;
  min-height: 342px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-right: 0;
  overflow: hidden;
}

.promo-card:last-child {
  border-right: 1px solid var(--line);
}

.promo-card>span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 220px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
}

.promo-card small {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.promo-card img {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 78%;
  height: 72%;
  object-fit: contain;
}

.promo-card b {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 25px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
}

.promo-card--blue {
  color: var(--white);
  background: var(--blue);
}

.promo-card--blue>span,
.promo-card--blue b {
  color: var(--white);
}

@media (min-width: 768px) {
  main .promotions--home .promo-card {
    min-height: 299px;
  }
}

@media (max-width: 767px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: 280px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .promo-card:last-child {
    border-bottom: 1px solid var(--line);
  }
}

.promotions:not(.promotions--home) .promo-card::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #c4c4c1;
  content: "";
}

.promotions:not(.promotions--home) .promo-grid {
  position: absolute;
  top: 249px;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promotions:not(.promotions--home) .promo-card {
  min-height: 320px;
  padding: 40px 30px;
  background: #fafafa;
  border: 0;
}

.promotions:not(.promotions--home) .promo-card>span {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 80%;
  color: #010f77;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}

.promotions:not(.promotions--home) .promo-card>p {
  position: relative;
  z-index: 2;
  width: 300px;
  margin: 30px 0 0;
  color: rgba(48, 48, 48, .7);
  font-size: 14px;
  line-height: 1;
}

.promotions:not(.promotions--home) .promo-card>u {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 30px;
  color: #303030;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.promotions:not(.promotions--home) .promo-card img {
  right: 0;
  bottom: 0;
  width: 290px;
  height: 180px;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
}

.promotions:not(.promotions--home) .promo-card--tax-refund img {
  transform: scaleX(-1);
}

.promotions:not(.promotions--home) .promo-card::before {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  border-right: 0;
  border-left: 2px solid #c4c4c1;
}

.promotions:not(.promotions--home) .promo-card::after {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #c4c4c1;
  border-right: 2px solid #c4c4c1;
  content: "";
}

@media (max-width: 1359px) and (min-width: 768px) {
  .promotions:not(.promotions--home) .promo-grid {
    top: 210px;
    gap: 16px;
  }

  .promotions:not(.promotions--home) .promo-card {
    min-height: 330px;
    padding: 30px 24px;
  }

  .promotions:not(.promotions--home) .promo-card>span,
  .promotions:not(.promotions--home) .promo-card>p {
    width: 90%;
    max-width: none;
  }

  .promotions:not(.promotions--home) .promo-card img {
    width: min(75%, 290px);
    height: 50%;
    object-fit: contain;
    object-position: right bottom;
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: min(75%, 290px);
    height: 50%;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip img {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 767px) {
  .promotions:not(.promotions--home) .promo-grid {
    left: 50%;
    width: min(100%, 390px);
    grid-template-columns: 1fr;
    gap: 10px;
    transform: translateX(-50%);
  }

  .promotions:not(.promotions--home) .promo-card {
    min-height: 320px;
    padding: 30px 20px;
  }

  .promotions:not(.promotions--home) .promo-card>span,
  .promotions:not(.promotions--home) .promo-card>p {
    width: 300px;
    max-width: none;
  }

  .promotions:not(.promotions--home) .promo-card img {
    right: auto;
    bottom: auto;
    object-fit: fill;
  }

  .promotions:not(.promotions--home) .promo-card--installment img {
    top: 140px;
    left: 77px;
    width: 290px;
    height: 180px;
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    top: 140px;
    right: auto;
    bottom: auto;
    left: 100px;
    display: block;
    width: 290px;
    height: 180px;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip img {
    top: 13.8px;
    right: auto;
    bottom: auto;
    left: -89px;
    width: 356px;
    height: 199.3px;
    max-width: none;
    object-fit: fill;
    transform: none;
  }

  .promotions:not(.promotions--home) .promo-card--monthly img {
    top: 132.2px;
    left: 120.4px;
    width: 269.7px;
    height: 269.7px;
    clip-path: inset(7.8px 0 81.9px 0);
  }
}

@media (max-width: 340px) {

  .promotions:not(.promotions--home) .promo-card>span,
  .promotions:not(.promotions--home) .promo-card>p {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .promotions:not(.promotions--home) .promo-grid {
    left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    transform: none;
  }

  .promotions:not(.promotions--home) .promo-card {
    min-height: 320px;
    padding: 30px 24px;
  }

  .promotions:not(.promotions--home) .promo-card>span:not(.promo-card__imgflip),
  .promotions:not(.promotions--home) .promo-card>p {
    width: min(48%, 420px);
    max-width: none;
  }

  .promotions:not(.promotions--home) .promo-card>u {
    width: fit-content;
  }

  .promotions:not(.promotions--home) .promo-card img {
    right: 0;
    bottom: 0;
    width: min(42%, 360px);
    height: 72%;
    object-fit: contain;
    object-position: right bottom;
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: min(42%, 360px);
    height: 72%;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip img {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    transform: none;
  }
}

@media (min-width: 1360px) {
  .promotions:not(.promotions--home) .promo-grid {
    position: relative;
    top: auto;
    grid-auto-rows: minmax(320px, auto);
  }
}

@media (min-width: 1000px) and (max-width: 1359px) {
  .promotions:not(.promotions--home) .promo-grid {
    position: relative;
    top: auto;
    grid-auto-rows: minmax(330px, auto);
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .promotions:not(.promotions--home) .promo-grid {
    position: relative;
    top: auto;
    grid-auto-rows: minmax(320px, auto);
  }
}

@media (max-width: 767px) {
  .promotions:not(.promotions--home) .promo-grid {
    position: relative;
    top: auto;
    grid-template-rows: none;
    grid-auto-rows: minmax(320px, auto);
  }

  .promotions:not(.promotions--home) .promo-card> :is(span:not(.promo-card__imgflip), p) {
    max-width: 100%;
  }
}

@media (max-width: 429px) {
  .promotions:not(.promotions--home) .promo-card> :is(span:not(.promo-card__imgflip), p) {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1360px) {
  .promotions:not(.promotions--home) .promo-card--installment img {
    object-fit: fill;
    object-position: auto;
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    top: auto;
    right: 1px;
    bottom: 0;
    left: auto;
    display: block;
    width: 290px;
    height: 180px;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions:not(.promotions--home) .promo-card--tax-refund .promo-card__imgflip img {
    top: 13.8px;
    right: auto;
    bottom: auto;
    left: -89px;
    width: 356px;
    height: 199.3px;
    max-width: none;
    object-fit: fill;
    transform: none;
  }

  .promotions:not(.promotions--home) .promo-card--monthly img {
    top: auto;
    right: 0;
    bottom: -81.9px;
    left: auto;
    width: 269.7px;
    height: 269.7px;
    object-fit: fill;
    clip-path: inset(0 0 81.9px 0);
  }
}

.promotions--home .promo-grid {
  position: absolute;
  top: 249px;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promotions--home .promo-card {
  min-height: 320px;
  padding: 40px 30px;
  background: #fafafa;
  border: 0;
}

.promotions--home .promo-card>span {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 80%;
  color: #010f77;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}

.promotions--home .promo-card>p {
  position: relative;
  z-index: 2;
  width: 300px;
  margin: 30px 0 0;
  color: rgba(48, 48, 48, .7);
  font-size: 14px;
  line-height: 1;
}

.promotions--home .promo-card>u {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 30px;
  color: #303030;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.promotions--home .promo-card img {
  right: 0;
  bottom: 0;
  width: 290px;
  height: 180px;
  max-width: none;
  object-fit: cover;
  object-position: bottom;
}

.promotions--home .promo-card--tax-refund img {
  transform: scaleX(-1);
}

.promotions--home .promo-card::before {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  border-right: 0;
  border-left: 2px solid #c4c4c1;
}

.promotions--home .promo-card::after {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #c4c4c1;
  border-right: 2px solid #c4c4c1;
  content: "";
}

@media (min-width: 768px) and (max-width: 1359px) {
  .promotions--home .promo-grid {
    top: 210px;
    gap: 16px;
  }

  .promotions--home .promo-card {
    min-height: 330px;
    padding: 30px 24px;
  }

  .promotions--home .promo-card>span,
  .promotions--home .promo-card>p {
    width: 90%;
    max-width: none;
  }

  .promotions--home .promo-card img {
    width: min(75%, 290px);
    height: 50%;
    object-fit: contain;
    object-position: right bottom;
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: min(75%, 290px);
    height: 50%;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip img {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    transform: none;
  }
}

@media (min-width: 1360px) {
  .promotions--home .promo-card--installment img {
    object-fit: fill;
    object-position: auto;
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    top: auto;
    right: 1px;
    bottom: 0;
    left: auto;
    display: block;
    width: 290px;
    height: 180px;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip img {
    top: 13.8px;
    right: auto;
    bottom: auto;
    left: -89px;
    width: 356px;
    height: 199.3px;
    max-width: none;
    object-fit: fill;
    transform: none;
  }

  .promotions--home .promo-card--monthly img {
    top: auto;
    right: 0;
    bottom: -81.9px;
    left: auto;
    width: 269.7px;
    height: 269.7px;
    object-fit: fill;
    clip-path: inset(0 0 81.9px 0);
  }
}

@media (max-width: 767px) {
  .promotions--home .promo-grid {
    width: min(100%, 390px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promotions--home .promo-card {
    min-height: 320px;
    padding: 30px 20px;
  }

  .promotions--home .promo-card>span,
  .promotions--home .promo-card>p {
    width: 300px;
    max-width: none;
  }

  .promotions--home .promo-card img {
    right: auto;
    bottom: auto;
    object-fit: fill;
  }

  .promotions--home .promo-card--installment img {
    top: 140px;
    left: 77px;
    width: 290px;
    height: 180px;
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    top: 140px;
    right: auto;
    bottom: auto;
    left: 100px;
    display: block;
    width: 290px;
    height: 180px;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip img {
    top: 13.8px;
    right: auto;
    bottom: auto;
    left: -89px;
    width: 356px;
    height: 199.3px;
    max-width: none;
    object-fit: fill;
    transform: none;
  }

  .promotions--home .promo-card--monthly img {
    top: 132.2px;
    left: 120.4px;
    width: 269.7px;
    height: 269.7px;
    clip-path: inset(7.8px 0 81.9px 0);
  }
}

@media (max-width: 340px) {

  .promotions--home .promo-card>span,
  .promotions--home .promo-card>p {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1360px) {
  .promotions--home .promo-grid {
    position: relative;
    top: auto;
    grid-auto-rows: minmax(320px, auto);
  }
}

@media (min-width: 1000px) and (max-width: 1359px) {
  .promotions--home .promo-grid {
    position: relative;
    top: auto;
    grid-auto-rows: minmax(330px, auto);
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .promotions--home .promo-grid {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(320px, auto);
    gap: 10px;
    transform: none;
  }

  .promotions--home .promo-card {
    min-height: 320px;
    padding: 30px 24px;
  }

  .promotions--home .promo-card>span:not(.promo-card__imgflip),
  .promotions--home .promo-card>p {
    width: min(48%, 420px);
    max-width: none;
  }

  .promotions--home .promo-card>u {
    width: fit-content;
  }

  .promotions--home .promo-card img {
    right: 0;
    bottom: 0;
    width: min(42%, 360px);
    height: 72%;
    object-fit: contain;
    object-position: right bottom;
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: min(42%, 360px);
    height: 72%;
    overflow: hidden;
    transform: scaleX(-1);
  }

  .promotions--home .promo-card--tax-refund .promo-card__imgflip img {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 767px) {
  .promotions--home .promo-grid {
    position: relative;
    top: auto;
    left: 50%;
    grid-template-rows: none;
    grid-auto-rows: minmax(320px, auto);
    transform: translateX(-50%);
  }

  .promotions--home .promo-card> :is(span:not(.promo-card__imgflip), p) {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .promotions--home .promo-card> :is(span:not(.promo-card__imgflip), p) {
    width: 100%;
    max-width: 100%;
  }
}

.promotions-catalog .promo-grid {
  position: relative;
  inset: auto;
  width: 100%;
  margin-top: 60px;
  grid-auto-rows: minmax(320px, auto);
  transform: none;
}

.promotions-catalog .promo-card {
  background: #fff;
}

@media (min-width: 768px) and (max-width: 1359px) {
  .promotions-catalog .promo-grid {
    margin-top: 52px;
  }
}

@media (max-width: 767px) {
  .promotions-catalog .promo-grid {
    margin-top: 30px;
    gap: 10px
  }
}