.main-content {
  flex: 1;
  width: 100%;
  max-width: 1230px;
  margin: 100px auto 100px;
  padding: 0 15px;
}


.extra-meet-hero {
  position: relative;
  width: 100%;
  min-height: 723px;
  margin: 20px auto 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  color: #12113b;
  /* background: #fdebf5; */
  background: linear-gradient(172deg, #fff0f7 0%, #ffebf4 100%);
  border-radius: 20px;
}

@media (min-width: 501px) {
  .extra-meet-hero {
    min-height: 551px;
    margin-top: 40px;
    border-radius: 28px;
    background: linear-gradient(90deg, #fff0f7 0%, #ffd5e8 100%);
  }
}

.extra-meet-hero__head {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 259px;
  margin: 16px auto 0;
}

@media (min-width: 501px) {
  .extra-meet-hero__head {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 12.1%;
    align-items: center;
    width: calc(100% - 160px);
    margin-top: 40px;
  }
}

.extra-meet-hero__brand {
  display: block;
  width: 124px;
}

@media (min-width: 501px) {
  .extra-meet-hero__brand {
    width: 255px;
  }
}

.extra-meet-hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

.extra-meet-hero__title {
  margin: 20px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #12113b;
  text-align: center;
}

@media (min-width: 501px) {
  .extra-meet-hero__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
  }
}

.extra-meet-hero__title-desktop {
  display: none;
}

@media (min-width: 501px) {
  .extra-meet-hero__title-desktop {
    display: block;
  }
}

.extra-meet-hero__title-mobile {
  display: block;
}

@media (min-width: 501px) {
  .extra-meet-hero__title-mobile {
    display: none;
  }
}

.extra-meet-hero__products,
.extra-meet-hero__pets {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.extra-meet-hero__products {
  z-index: 2;
  top: 202px;
  left: 50%;
  width: 326px;
  transform: translateX(-50%);
}

@media (min-width: 501px) {
  .extra-meet-hero__products {
    top: auto;
    bottom: 6px;
    left: 3.99%;
    width: 49.7%;
    transform: none;
  }
}

.extra-meet-hero__pets {
  z-index: 1;
  right: auto;
  bottom: -6px;
  left: 48%;
  width: 540px;
  transform: translateX(-50%);
}

@media (max-width: 399.98px) {
  .extra-meet-hero__pets {
    width: 100%;
  }
}

@media (min-width: 501px) {
  .extra-meet-hero__pets {
    top: auto;
    right: -35px;
    bottom: -6px;
    left: auto;
    width: 60.92%;
    transform: none;
  }
}

@media (min-width: 501px) and (max-width: 767.98px) {
  .extra-meet-hero {
    min-height: clamp(274px, 52vw, 400px);
  }

  .extra-meet-hero__head {
    grid-template-columns: clamp(62px, 12vw, 92px) minmax(0, 1fr);
    gap: clamp(18px, 4vw, 28px);
    align-items: start;
    width: calc(100% - 56px);
    margin-top: clamp(20px, 4vw, 32px);
  }

  .extra-meet-hero__brand {
    width: clamp(62px, 12vw, 92px);
    margin-top: 4px;
  }

  .extra-meet-hero__title {
    font-size: clamp(26px, 4.1vw, 32px);
    line-height: 1.18;
    text-align: center;
  }

  .extra-meet-hero__title-desktop {
    display: none;
  }

  .extra-meet-hero__title-mobile {
    display: block;
  }

  .extra-meet-hero__products {
    bottom: clamp(18px, 3.8vw, 30px);
    left: clamp(28px, 6vw, 52px);
    width: clamp(205px, 42vw, 300px);
  }

  .extra-meet-hero__pets {
    right: clamp(12px, 3.5vw, 32px);
    bottom: clamp(14px, 3vw, 24px);
    width: clamp(235px, 44vw, 335px);
  }
}

.extra-meet-hero__products img,
.extra-meet-hero__pets img {
  display: block;
  width: 100%;
  height: auto;
}

.meet-catalog {
  width: 100%;
  margin: 100px 0 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .meet-catalog {
    margin-top: 150px;
  }
}

.meet-catalog__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
}

.meet-catalog__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

@media (min-width: 768px) {
  .meet-catalog__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.meet-catalog__tab {
  position: relative;
  display: block;
  min-height: 160px;
  padding: 0;
  overflow: visible;
  font: inherit;
  color: #0e0e0e;
  text-align: left;
  background-color: #f4f4f4;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .meet-catalog__tab {
    min-height: 191px;
  }
}

.meet-catalog__tab.is-active {
  background-color: #bbe4e9;
}

.meet-catalog__tab-picture,
.meet-catalog__tab-image {
  display: block;
}

.meet-catalog__tab-image {
  position: absolute;
  left: 4px;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.meet-catalog__tab-image--wet-cats {
  width: 118px;
  height: 165px;
}

.meet-catalog__tab-image--treats-cats {
  left: 0;
  width: 139px;
  height: 174px;
}

.meet-catalog__tab-image--treats-dogs {
  left: 3px;
  width: 115px;
  height: 167px;
}

@media (min-width: 768px) {
  .meet-catalog__tab-image--wet-cats {
    left: 7px;
    width: 170px;
    height: 210px;
  }

  .meet-catalog__tab-image--treats-cats {
    left: 0;
    width: 165px;
    height: 229px;
  }

  .meet-catalog__tab-image--treats-dogs {
    left: 2px;
    width: 146px;
    height: 212px;
  }
}

.meet-catalog__tab-label {
  position: absolute;
  left: 4px;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  max-width: none;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  text-align: center;
  white-space: nowrap;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 50px;
}
@media (max-width: 399.98px) {
  .meet-catalog__tab-label {
    white-space: normal;
  }
}
@media (min-width: 768px) {
  .meet-catalog__tab-label {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: auto;
    max-width: calc(100% - 24px);
    min-height: 32px;
    padding: 4px 12px;
    font-size: 16px;
    line-height: 1.5;
    transform: translateX(-50%);
  }
}

.meet-catalog__tab-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #0e0e0e;
  background-color: transparent;
  border: 1.2px solid #0e0e0e;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

@media (min-width: 768px) {
  .meet-catalog__tab-arrow {
    top: 16px;
    right: 16px;
  }
}

.meet-catalog__tab.is-active .meet-catalog__tab-arrow {
  background-color: #ffffff;
  border-color: #ffffff;
}

.meet-catalog__content {
  margin-top: 10px;
  padding: 20px 10px;
  background-color: #f4f4f4;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .meet-catalog__content {
    margin-top: 20px;
    padding: 40px 20px;
  }
}

.meet-catalog__panel {
  min-width: 0;
}

.meet-catalog__panel[hidden] {
  display: none;
}

.meet-catalog__slider {
  width: 100%;
  min-width: 0;
}

.meet-catalog__wrapper {
  align-items: stretch;
}

.meet-catalog__slide {
  height: auto;
}

.meet-catalog__card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 902px;
  padding: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #7f7f7f;
  text-align: center;
  background-color: #ffffff;
  border: 1px dashed #d8d8d8;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .meet-catalog__card-placeholder {
    min-height: 452px;
    font-size: 18px;
  }
}

.meet-catalog__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 176px;
  height: 3px;
  margin: 18px auto 0;
  gap: 8px;
}

@media (min-width: 768px) {
  .meet-catalog__pagination {
    margin-top: 20px;
  }
}

.meet-catalog .meet-catalog__pagination .swiper-pagination-bullet {
  flex: 0 0 20px;
  width: 20px;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 50px;
  opacity: 1;
}

.meet-catalog .meet-catalog__pagination .swiper-pagination-bullet-active {
  flex-basis: 92px;
  background-color: #d7eff2;
}

.meet-catalog .product-line__panel.is-active:not(.product-line__placeholder) {
  width: 100%;
}

.meet-catalog .meet-product-card {
  min-height: 1088px;
}

@media (min-width: 992px) {
  .meet-catalog .meet-product-card {
    /* grid-template-rows: auto auto 1fr auto;
    min-height: 993px; */
  }
}

.meet-catalog .meet-product-card .product-line__media {
  grid-column: 1;
}

@media (min-width: 992px) {
  .meet-catalog .meet-product-card .product-line__media {
    grid-row: 1 / -1;
  }
}

.meet-catalog .meet-product-card .product-line__title--desktop,
.meet-catalog .meet-product-card .product-line__head,
.meet-catalog .meet-product-card .product-line__description,
.meet-catalog .meet-product-card .product-line__link {
  grid-column: 2;
}

.meet-catalog .meet-product-card .product-line__title--desktop {
  grid-row: 1;
}

.meet-catalog .meet-product-card .product-line__head {
  grid-row: 2;
}

.meet-catalog .meet-product-card .product-line__description {
  grid-row: 3;
}

.meet-catalog .meet-product-card .product-line__link {
  grid-row: 4;
  margin-top: auto;
}

.meet-catalog .product-line__image-slider {
  overflow: visible;
}

.meet-catalog .product-line__image-slide {
  width: 320px;
  height: 320px;
  min-height: 294px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__image-slide {
    width: 320px;
    height: 320px;
    min-height: 299px;
  }
}

.meet-catalog .product-line__image-slide img {
  object-fit: contain;
}

.meet-product-card__video {
  display: block;
  width: 320px;
  height: 320px;
  object-fit: contain;
}

.meet-catalog .product-line__features {
  margin-top: 18px;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__features {
    margin-top: 36px;
  }
}

.meet-catalog .product-line__feature-list {
  gap: 15px;
}

@media (max-width: 374.98px) {
  .meet-catalog .product-line__feature-list {
    gap: 10px;
  }
}

.meet-catalog .product-line__feature.is-active {
  color: #f8bbdf;
}

.meet-catalog .product-line__feature-label {
  background-color: #f8bbdf;
}

.meet-product-card__taste .meet-product-card__label-dot,
.meet-product-card__taste .meet-product-card__label-icon {
  flex: 0 0 auto;
}

.meet-product-card__label-dot {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.meet-catalog .meet-product-card__label-dot--card-01-label-01 {
  background-color: #a0bce3;
}

.meet-catalog .meet-product-card__label-dot--card-02-label-01 {
  background-color: #9b7bb6;
}

.meet-catalog .meet-product-card__label-dot--card-03-label-01 {
  background-color: #f29323;
}

.meet-catalog .meet-product-card__label-dot--card-04-label-01 {
  background-color: #f6a09f;
}

.meet-catalog .meet-product-card__label-dot--card-05-label-01 {
  background-color: #9b7bb6;
}

.meet-product-card__label-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.meet-product-card__labels {
  display: flex;
  flex-wrap: wrap;
  order: 3;
  gap: 12px 24px;
  width: 100%;
  margin: 18px 0 0;
}

@media (min-width: 992px) {
  .meet-product-card__labels {
    order: initial;
    margin: 0;
  }
}

.meet-product-card__label-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meet-product-card__label-link:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .meet-product-card__label-link {
    width: 100%;
  }
}

.meet-catalog .product-line__description {
  margin-top: 22px;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__description {
    margin-top: 16px;
  }
}

.meet-catalog .product-line__link {
  max-width: none;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__link {
    width: 237px;
    margin-top: 42px;
  }
}

.preventive-hero {
  position: relative;
  width: 100%;
  margin: 20px auto 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  color: #12113b;
  background: linear-gradient(to bottom, #f0eeff 50%, #f3f1eb 100%);
  border-radius: 20px;
  height: 747px;
  padding: 19px;
}

@media (min-width: 768px) {
  .preventive-hero {
    margin-top: 40px;
    height: 640px;
    overflow: visible;
    border-radius: 0;
    position: relative;
    background: transparent;
  }
  .preventive-hero__panel {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 551px;
    background: linear-gradient(to right, #f0eeff 25%, #f3f1eb 100%);
    content: "";
    border-radius: 28px;
    z-index: -1;
    padding: 40px;
  }
}

@media (min-width: 768px) {
}

.preventive-hero__brand {
  width: 138px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .preventive-hero__brand {
    width: 23.17%;
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .preventive-hero__brand {
    width: 278px;
  }
}

.preventive-hero__logo {
  display: block;
  width: 138px;
  height: 64px;
}

@media (min-width: 768px) {
  .preventive-hero__logo {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .preventive-hero__logo {
    width: 278px;
    height: 130px;
  }
}

.preventive-hero__title {
  margin: 14px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
  color: #12113b;
  text-align: center;
}

@media (min-width: 768px) {
  .preventive-hero__title {
    width: 40%;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .preventive-hero__title {
    width: 490px;
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  .preventive-hero__title {
    font-size: 32px;
    margin-top: 30px;
  }
}

@media (max-width: 359.98px) {
  .preventive-hero__title {
    font-size: 22px;
  }
}

.preventive-hero__title-mobile {
  display: block;
}

@media (min-width: 768px) {
  .preventive-hero__title-mobile {
    display: none;
  }
}

.preventive-hero__title-desktop {
  display: none;
}

@media (min-width: 768px) {
  .preventive-hero__title-desktop {
    display: block;
  }
}

.preventive-hero__pets {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
  user-select: none;
}

.preventive-hero__products {
  margin: 10px auto 0;
  display: block;
  width: 252px;
}

@media (min-width: 768px) {
  .preventive-hero__products {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 44%;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .preventive-hero__products {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .preventive-hero__products {
    left: 2px;
    bottom: 18px;
    width: 564px;
  }
}

.preventive-hero__pets {
  width: 334px;
  left: 50%;
  bottom: 0.27%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .preventive-hero__pets {
    bottom: 0;
    right: 0;
    left: auto;
    width: 50%;
    transform: none;
  }
}

@media (min-width: 1200px) {
  .preventive-hero__pets {
    width: 600px;
  }
}

.preventive-hero__products img,
.preventive-hero__pets img {
  display: block;
  width: 100%;
  height: auto;
}

.choice {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 100px 0 0;
}

@media (min-width: 768px) {
  .choice {
    margin-top: 150px;
  }
}

.choice__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 760px;
}

@media (min-width: 768px) {
  .choice__inner {
    height: 192px;
  }
}

.choice__title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .choice__title {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }
}

.choice__text {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .choice__text {
    text-align: center;
  }
}

.choice__text strong {
  font-weight: 700;
}

.healthy-ration {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .healthy-ration {
    margin-top: 150px;
  }
}

.healthy-ration__title {
  width: 100%;
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .healthy-ration__title {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }
}

.healthy-ration__slider {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .healthy-ration__slider {
    overflow: visible;
  }
}

.healthy-ration__list {
  display: flex;
  align-items: stretch;
}

@media (min-width: 768px) {
  .healthy-ration__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    transform: none;
  }
}

.healthy-ration__card {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 290px;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 768px) {
  .healthy-ration__card {
    min-height: 316px;
    padding: 16px;
  }
}

.healthy-ration__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 0 12px;
  padding: 0;
  overflow: hidden;
  background-color: #d8d8d8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.healthy-ration__icon:hover {
  background-color: #d7eff2;
}

.healthy-ration__icon svg {
  display: block;
  width: 120px;
  height: 120px;
}

.healthy-ration__card-title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .healthy-ration__card-title {
    font-size: 24px;
    font-weight: 500;
  }
}

.healthy-ration__text {
  width: 100%;
  max-width: 355px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

.healthy-ration__navigation {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .healthy-ration__navigation {
    display: none;
  }
}

.healthy-ration__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 32px;
  padding: 0;
  color: #bbe4e9;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 0.3s ease;
}

.healthy-ration__arrow.swiper-button-disabled {
  color: #d8d8d8;
  cursor: default;
}

.healthy-ration__arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.healthy-ration__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.healthy-ration .healthy-ration__pagination .swiper-pagination-bullet {
  flex: 1 1 20px;
  width: auto;
  min-width: 20px;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 2px;
  opacity: 1;
  transition:
    flex-grow 0.3s ease,
    background-color 0.3s ease;
}

.healthy-ration .healthy-ration__pagination .swiper-pagination-bullet-active {
  flex-grow: 5;
  min-width: 92px;
  background-color: #d7eff2;
}

.product-line {
  width: 100%;
  margin: 100px 0 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .product-line {
    margin-top: 150px;
  }
}

.product-line__icons-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.product-line__pets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 0 10px;
}

@media (min-width: 768px) {
  .product-line__pets {
    gap: 20px;
    margin-bottom: 20px;
  }
}

.product-line__pet-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 80px;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  cursor: pointer;
  background-color: #f4f4f4;
  border: 0;
  border-radius: 12px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.product-line__pet-tab.is-active {
  background-color: #bbe4e9;
}

.product-line__pet-tab:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.product-line__pet-image {
  display: block;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  margin-right: 16px;
  overflow: hidden;
  border-radius: 50%;
}

.product-line__pet-image img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 374.98px) {
  .product-line__pet-image {
    margin-right: 10px;
  }
}

.product-line__pet-text {
  min-width: 0;
}

.product-line__body {
  width: 100%;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 12px;
  box-sizing: border-box;
  /* min-height: 998px; */
}

@media (min-width: 768px) {
  .product-line__body {
    padding: 40px 20px;
    /* min-height: 579px; */
  }
}

@media (min-width: 1100px) {
  .product-line__body {
    /* height: 624px; */
  }
}

.product-line__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 0 18px;
}

.product-line__tabs[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .product-line__tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
}

.product-line__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 52px;
  padding: 14px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #12113b;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.product-line__tab[data-product-tab$="-renal"].is-active {
  background-color: #e0bfa3;
}

.product-line__tab[data-product-tab$="-urinary"].is-active {
  background-color: #f8bbdf;
}

.product-line__tab[data-product-tab$="-gastrointestinal"].is-active {
  background-color: #a7dad3;
}

.product-line__tab[data-product-tab$="-hypoallergenic"].is-active {
  background-color: #b3db81;
}

.product-line__tab[data-product-tab$="-probiotic"].is-active {
  background-color: #d8d8d8;
}

.product-line__tab:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

@media (max-width: 374.98px) {
  .product-line__tab {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }
}

.product-line__panel {
  width: 100%;
}

.product-line__panel[hidden] {
  display: none;
}

.product-line__panel.is-active:not(.product-line__placeholder) {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .product-line__panel.is-active:not(.product-line__placeholder) {
    display: grid;
    grid-template-columns: minmax(340px, 437px) minmax(0, 1fr);
    align-items: start;
    gap: 40px;
    min-height: 452px;
  }
}

.product-line__media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991.98px) {
  .product-line__media {
    display: contents;
  }
}

.product-line__image-slider {
  order: 4;
  width: 100%;
  max-width: 348px;
  margin: 18px auto 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .product-line__image-slider {
    order: initial;
    max-width: 357px;
    margin-top: 0;
  }
}

.product-line__image-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 294px;
}

@media (min-width: 768px) {
  .product-line__image-slide {
    min-height: 299px;
  }
}

.product-line__image-slide img {
  display: block;
  width: 100%;
  max-width: 348px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .product-line__image-slide img {
    max-width: 357px;
    height: 299px;
  }
}

.product-line__image-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .product-line__image-pagination {
    margin-top: 23px;
  }
}

.product-line .product-line__image-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #d8d8eb;
  opacity: 1;
}

.product-line .product-line__image-pagination .swiper-pagination-bullet-active {
  background-color: #12113b;
}

.product-line__features {
  order: 5;
  width: 100%;
  max-width: 348px;
  margin: 18px auto 0;
}

@media (min-width: 992px) {
  .product-line__features {
    order: initial;
    max-width: 336px;
    margin-top: 16px;
  }
}

.product-line__feature-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.product-line__feature {
  display: inline-flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #d8d8eb;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.product-line__feature.is-active {
  color: #f8bbdf;
}

.product-line__panel--renal .product-line__feature.is-active {
  color: #e0bfa3;
}

.product-line__panel--urinary .product-line__feature.is-active {
  color: #f8bbdf;
}

.product-line__panel--gastrointestinal .product-line__feature.is-active {
  color: #a7dad3;
}

.product-line__panel--hypoallergenic .product-line__feature.is-active {
  color: #b3db81;
}

.product-line__panel--probiotic .product-line__feature.is-active {
  color: #d8d8d8;
}

.product-line__feature:hover {
  transform: translateY(-2px);
}

.product-line__feature:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

.product-line__feature svg {
  display: block;
  width: 54px;
  height: 54px;
}

.product-line__feature-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 32px;
  max-width: 100%;
  margin: 10px auto 0;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #12113b;
  text-align: center;
  background-color: #f8bbdf;
  border-radius: 50px;
  box-sizing: border-box;
}

.product-line__panel--renal .product-line__feature-label {
  background-color: #e0bfa3;
}

.product-line__panel--urinary .product-line__feature-label {
  background-color: #f8bbdf;
}

.product-line__panel--gastrointestinal .product-line__feature-label {
  background-color: #a7dad3;
}

.product-line__panel--hypoallergenic .product-line__feature-label {
  background-color: #b3db81;
}

.product-line__panel--probiotic .product-line__feature-label {
  background-color: #d8d8d8;
}

@media (max-width: 767.98px) {
  .product-line__feature-label {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px;
  }
}

.product-line__content {
  display: contents;
}

@media (min-width: 992px) {
  .product-line__content {
    display: flex;
    flex-direction: column;
    min-height: 452px;
    justify-content: flex-start;
  }
}

.product-line__head {
  display: contents;
}

@media (min-width: 992px) {
  .product-line__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.product-line__title {
  order: 1;
  max-width: 348px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
  text-align: center;
}

.product-line__title--desktop {
  display: none;
}

.product-line__title--mobile {
  display: block;
}

@media (min-width: 992px) {
  .product-line__title {
    max-width: none;
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
    text-align: left;
  }

  .product-line__title--desktop {
    display: block;
    order: initial;
    margin-bottom: 16px;
  }

  .product-line__title--mobile {
    display: none;
  }
}

.product-line__taste {
  display: flex;
  order: 3;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .product-line__taste {
    order: initial;
    margin: 0;
  }
}

.product-line__taste span {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background-color: #f9d429;
  border-radius: 50%;
}

.product-line__panel--renal .product-line__taste span {
  background-color: #f05d22;
}

.product-line__panel--gastrointestinal .product-line__taste span,
.product-line__panel--hypoallergenic .product-line__taste span {
  background-color: #9b7bb6;
}

.product-line__panel--probiotic .product-line__taste span {
  background-color: #fcc3c3;
}

.product-line__subtitle {
  order: 2;
  max-width: 348px;
  margin: 12px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  text-align: center;
}

@media (min-width: 992px) {
  .product-line__subtitle {
    order: initial;
    max-width: 620px;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
  }
}

.product-line__description {
  order: 6;
  margin: 22px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .product-line__description {
    order: initial;
    margin-top: 16px;
  }
}

.product-line__description p {
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .product-line__description p {
    margin-bottom: 24px;
  }
}

.product-line__description ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 22px;
}
.product-line__description ul + p {
  margin-top: 24px;
}
.product-line__description li {
  padding-left: 2px;
}

.product-line__link {
  order: 7;
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
}

@media (min-width: 992px) {
  .product-line__link {
    order: initial;
    width: 237px;
    margin-top: 60px;
  }
  .product-line__link.probiotic {
    margin-top: 24px;
  }
}

.product-line__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 24px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .product-line__placeholder {
    min-height: 452px;
  }
}

.product-line__placeholder p {
  max-width: 420px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #7f7f7f;
}

.product-picker {
  width: 100%;
  margin: 100px 0 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .product-picker {
    margin-top: 150px;
  }
}

.product-picker__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .product-picker__title {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }
}

.product-picker__scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1230px) {
  .product-picker__scroll {
    overflow-x: visible;
  }
}

.product-picker__table {
  width: 1106px;
  min-width: 1106px;
  border-spacing: 0;
  border-collapse: separate;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 1230px) {
  .product-picker__table {
    width: 1200px;
    min-width: 1200px;
  }
}

.product-picker__label-col {
  width: 146px;
}

@media (min-width: 1230px) {
  .product-picker__label-col {
    width: 156px;
  }
}

.product-picker__product-col {
  width: 240px;
}

@media (min-width: 1230px) {
  .product-picker__product-col {
    width: 261px;
  }
}

.product-picker__table th,
.product-picker__table td {
  position: relative;
  height: 40px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  background-color: #fffefd;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  box-sizing: border-box;
}

.product-picker__table th:first-child,
.product-picker__table td:first-child {
  border-left: 1px solid #d8d8d8;
}

@media (max-width: 1229.98px) {
  .product-picker__table th:first-child,
  .product-picker__table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  .product-picker__table thead th:first-child {
    z-index: 4;
  }
}

.product-picker__table thead th {
  height: 52px;
  font-weight: 500;
  line-height: 1;
  vertical-align: middle;
  border-top: 1px solid #d8d8d8;
}

.product-picker__table thead th:first-child {
  border-top-left-radius: 12px;
}

.product-picker__table thead th:last-child {
  border-top-right-radius: 12px;
}

.product-picker__table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 12px;
}

.product-picker__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.product-picker__table tbody th {
  font-weight: 500;
  line-height: 1;
}

.product-picker__table .product-picker__head--renal {
  background-color: #e0bfa3;
}

.product-picker__table .product-picker__head--urinary {
  background-color: #f8bbdf;
}

.product-picker__table .product-picker__head--gastrointestinal {
  background-color: #a7dad3;
}

.product-picker__table .product-picker__head--hypoallergenic {
  background-color: #b3db81;
}

.product-picker__table .product-picker__head--probiotic {
  background-color: #eeeeee;
}

.product-picker__row--components th,
.product-picker__row--components td {
  height: 286px;
}

@media (min-width: 1230px) {
  .product-picker__row--components th,
  .product-picker__row--components td {
    height: 264px;
  }
}

.product-picker__badge {
  display: table;
  display: inline-block;
  width: auto;
  max-width: 100%;
  min-height: 30px;
  margin: 0 0 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 0.9;
  color: #0e0e0e;
  background-color: #eef2fa;
  border-radius: 50px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .product-picker__badge {
    vertical-align: top;
    min-height: 32px;
    margin-right: 6px;
    margin-bottom: 8px;
    padding: 4px 12px;
    line-height: 1.15;
  }
}
@media (min-width: 1230px) {
  .product-picker__badge br.hidden {
    display: none;
  }
}

.product-picker__age {
  display: inline-block;
  padding-right: 8px;
}

.product-picker__tooltip-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

.product-picker__tooltip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  line-height: 1;

  background-color: transparent;
  border: none;

  cursor: pointer;
}

.product-picker__tooltip {
  position: absolute;
  right: 2px;
  top: 34px;
  display: block;
  width: 291px;
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background-color: #353535;
  border-radius: 6px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.product-picker__tooltip::before {
  position: absolute;
  top: -10px;
  right: var(--product-picker-tooltip-arrow-right, 9px);
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #353535;
  border-left: 6px solid transparent;
  content: "";
}

.product-picker__tooltip-wrap.is-open .product-picker__tooltip {
  opacity: 1;
  visibility: visible;
}

.product-picker__tooltip.is-floating {
  position: fixed;
  right: auto;
  z-index: 100000;
  opacity: 1;
  visibility: visible;
}

.product-picker__note {
  width: 100%;
  max-width: 368px;
  margin: 20px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #d8d8d8;
  text-align: center;
}

@media (min-width: 768px) {
  .product-picker__note {
    max-width: 540px;
    margin: 20px auto 0;
    font-size: 24px;
    line-height: 1.4;
  }
}

.pet-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  margin: 40px auto 0;
}

@media (min-width: 768px) {
  .pet-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 60px auto 0;
  }
  .main-content {
    margin: 100px auto 160px;
  }
}

.pet-categories__card {
  position: relative;

  min-width: 0;
  border-radius: 8px;
  height: 186px;
}

@media (min-width: 768px) {
  .pet-categories__card {
    height: 380px;
  }
}

.pet-categories__card--cats {
  background: #5cbcd1;
  background: linear-gradient(90deg, #146f7b 0%, #9af3ff 78.4%, #56b9c6 100%);
}

.pet-categories__card--dogs {
  background: #5cbcd1;
  background: linear-gradient(90deg, #56b9c6 0%, #9af3ff 21.6%, #146f7b 100%);
}

.pet-categories__title {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

@media (min-width: 768px) {
  .pet-categories__title {
    font-size: 24px;
    padding: 20px;
  }
}

.pet-categories__title--right {
  text-align: right;
}

.pet-categories__image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  height: 199px;
  width: 165px;
}

.pet-categories__image--cats {
  right: 0;
}

.pet-categories__image--dogs {
  left: 0;
}
@media (min-width: 768px) {
  .pet-categories__image {
    height: 422px;
    width: 317px;
  }
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  padding-block: 4px;
  padding-inline: 20px 4px;
  max-width: 400px;
  width: 100% - 20px;

  height: 40px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #0e0e0e;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .category-link {
  }
}

.category-link__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #bbe4e9;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .category-link__icon {
  }
}

.pet-categories__link {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
}

@media (min-width: 768px) {
  .pet-categories__link {
    width: auto;
  }
}

@media (min-width: 768px) {
  .pet-categories__link--right {
    right: 20px;
    left: auto;
  }
  .pet-categories__link--left {
    right: auto;
    left: 20px;
  }
}

.benefits {
  width: 100%;

  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .benefits {
    margin: 150px auto 0;
  }
}

.benefits__heading {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .benefits__heading {
    margin-bottom: 14px;
    text-align: center;
  }
}

.benefits__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .benefits__title {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.3;
  }
}

.benefits__title-break {
  display: none;
}

@media (min-width: 768px) {
  .benefits__title-break {
    display: initial;
  }
}

.benefits__intro {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

.benefits__intro-break {
  display: none;
}

@media (min-width: 768px) {
  .benefits__intro-break {
    display: initial;
  }
  .benefits__intro {
  }
}

.benefits__slider {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .benefits__slider {
    overflow: visible;
  }
}

.benefits__list {
  display: flex;
  align-items: stretch;
}

@media (min-width: 768px) {
  .benefits__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    transform: none;
  }
}

@media (min-width: 1230px) {
  .benefits__list {
    grid-template-areas:
      "production composition"
      "formula composition"
      "formula control";
    grid-template-rows: 279px 121px 266px;
  }
}

.benefits-card {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  background-color: #f4f4f4;
  border-radius: 12px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}
.benefits-card:hover {
  background-color: #d7eff2;
}
@media (max-width: 767.98px) {
  .benefits-card {
    height: 476px !important;
  }
}
@media (min-width: 768px) {
  .benefits-card {
    min-height: 300px;
    padding: 24px;
    overflow: hidden;
    align-self: start;
  }
}

@media (min-width: 1230px) {
  .benefits-card {
    min-height: 0;
    padding: 32px;
    overflow: visible;
  }
}

@media (min-width: 768px) {
  .benefits-card--production {
  }
}

@media (min-width: 1230px) {
  .benefits-card--production {
    grid-area: production;
    height: 279px;
  }
}

@media (min-width: 768px) and (max-width: 1229.98px) {
  .benefits-card--composition {
    min-height: 360px;
    padding-bottom: 150px;
  }
}

@media (min-width: 1230px) {
  .benefits-card--composition {
    grid-area: composition;
    height: 420px;
  }
}

@media (min-width: 768px) and (max-width: 1229.98px) {
  .benefits-card--formula {
    min-height: 390px;
    padding-bottom: 210px;
  }
}

@media (min-width: 1230px) {
  .benefits-card--formula {
    grid-area: formula;
    height: 403px;
  }
}

@media (min-width: 1230px) {
  .benefits-card--control {
    grid-area: control;
    height: 266px;
  }
}

.benefits-card__title {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .benefits-card__title {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
  }
}

@media (min-width: 1230px) {
  .benefits-card__title {
    font-size: 24px;
  }
}

.benefits-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

.benefits-card__link {
  position: relative;
  z-index: 3;
  width: 100%;

  margin-top: 12px;
}

@media (min-width: 768px) {
  .benefits-card__link {
    width: fit-content;
  }
}

@media (min-width: 768px) {
  .benefits-card--composition .benefits-card__link {
    margin-top: 20px;
  }
}

.benefits-card__image {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 767.98px) {
  .benefits-card__image--composition {
    width: 255px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .benefits-card__image--production {
    width: 288px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .benefits-card__image--control {
    width: 288px;
    left: 0;
    bottom: 0;
  }
}

@media (min-width: 768px) {
  .benefits-card__image--composition {
    right: -10px;
    bottom: -10px;
    display: block;
    width: clamp(220px, 28vw, 280px);
  }
  .benefits-card__image--production,
  .benefits-card__image--control {
    display: none;
  }
}

@media (min-width: 1230px) {
  .benefits-card__image--composition {
    right: 20px;
    bottom: -20px;
    width: 320px;
  }
}

.benefits-card__image--formula {
  right: 50%;
  bottom: -4px;
  width: 288px;
  transform: translateX(50%);
}

@media (min-width: 768px) {
  .benefits-card__image--formula {
    right: 50%;
    bottom: -20px;
    width: clamp(300px, 32vw, 360px);
    transform: translateX(50%);
  }
}

@media (min-width: 1230px) {
  .benefits-card__image--formula {
    right: 0;
    bottom: -50px;
    width: 508px;
    transform: none;
  }
}

.benefits__navigation {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .benefits__navigation {
    display: none;
  }
}

.benefits__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #bbe4e9;
  cursor: pointer;
  transition: color 0.3s ease;
}

.benefits__arrow.swiper-button-disabled {
  color: #d8d8d8;
  cursor: default;
}

.benefits__arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.benefits__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.benefits .benefits__pagination .swiper-pagination-bullet {
  flex: 1 1 20px;
  width: auto;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 2px;
  opacity: 1;
  transition:
    flex-grow 0.3s ease,
    background-color 0.3s ease;
  min-width: 20px;
}

.benefits .benefits__pagination .swiper-pagination-bullet-active {
  flex-grow: 5;
  background-color: #d7eff2;
  min-width: 92px;
}

.brand-video {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .brand-video {
    grid-template-columns: 590px minmax(0, 1fr);
    align-items: flex-start;
    gap: 16px;
    margin-top: 150px;
  }
}

.brand-video__media {
  position: relative;
  width: calc(100% + 30px);
  margin-right: -15px;
  margin-left: -15px;
  overflow: hidden;
  background-color: #f4f4f4;
}

@media (min-width: 992px) {
  .brand-video__media {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 20px;
  }
}

.brand-video__video {
  display: block;
  width: 100%;
  aspect-ratio: 590 / 332;
  object-fit: cover;
}

.brand-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: rgba(14, 14, 14, 0.88);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.brand-video__play:hover {
  background-color: #0e0e0e;
}

.brand-video__play:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

.brand-video.is-playing .brand-video__play {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.brand-video__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
}

.brand-video__content {
  padding-top: 20px;
}

@media (min-width: 992px) {
  .brand-video__content {
    padding-top: 0;
  }
}

.brand-video__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .brand-video__title {
    font-size: 32px;
    line-height: 1.3;
  }
}

.brand-video__text {
  /* max-width: 410px; */
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .brand-video__text {
    max-width: 435px;
  }
}

.ration {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ration {
    margin-top: 150px;
  }
}

.ration__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 708px;
  padding: 16px 16px 0;
  overflow: visible;
  background: url(/imgs/main-page/ration-bd-mb.png) center no-repeat;
  border-radius: 12px;
  box-sizing: border-box;
  background-size: cover;
}

/* .ration__inner::before,
.ration__inner::after {
  content: "";
  position: absolute;
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.ration__inner::before {
  top: 0;
  left: 0;
  width: 63px;
  height: 47px;
  background-image: url("data:image/svg+xml,%3Csvg width='63' height='47' viewBox='0 0 63 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse opacity='0.34' cx='-1.9594' cy='-18.0514' rx='64.599' ry='64.0625' transform='rotate(-11.4614 -1.9594 -18.0514)' fill='url(%23paint0_linear_6673_17321)' fill-opacity='0.17'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6673_17321' x1='-3.821' y1='-95.4225' x2='-8.28444' y2='-12.4223' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2398DEFF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2398DEFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.ration__inner::after {
  right: 0;
  bottom: 0;
  width: 108px;
  height: 59px;
  background-image: url("data:image/svg+xml,%3Csvg width='108' height='59' viewBox='0 0 108 59' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='93.8527' cy='93.1351' rx='93.8651' ry='93.0855' transform='rotate(-11.4614 93.8527 93.1351)' fill='url(%23paint0_linear_6673_17322)' fill-opacity='0.17'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6673_17322' x1='91.1477' y1='-19.2884' x2='84.6622' y2='101.314' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2398DEFF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2398DEFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
} */

@media (min-width: 992px) {
  .ration__inner {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
    align-items: center;
    min-height: 256px;
    padding: 32px;
    /* background-color: #d7eff2;
    background-image: linear-gradient(90deg, #146f7b 0%, #56b9c6 100%); */
    border-radius: 20px;
    background: url(/imgs/main-page/ration-bd.png) center no-repeat;
    background-size: cover;
  }

  .ration__inner::before,
  .ration__inner::after {
    display: block;
  }
}

.ration__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .ration__content {
    align-self: start;
  }
}

.ration__title {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}

.ration__title span {
  font-weight: 600;
}

@media (min-width: 992px) {
  .ration__title {
    font-size: 32px;
    line-height: 1.3;
  }
}

.ration__link {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
}

@media (min-width: 992px) {
  .ration__link {
    width: fit-content;
    max-width: none;
  }
}

.ration__text {
  position: relative;
  z-index: 2;
  /* max-width: 270px; */
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.ration__text p {
  margin: 0;
  color: #ffffff;
}

.ration__text p + p {
  margin-top: 24px;
}

@media (min-width: 992px) {
  .ration__text {
    justify-self: end;
    max-width: 316px;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.48;
  }

  .ration__text p + p {
    margin-top: 22px;
  }
}

.ration__image {
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  bottom: 0;
  display: block;
  width: 256px;
  height: auto;
  pointer-events: none;
  transform: translateX(-50%);
  user-select: none;
}

@media (min-width: 992px) {
  .ration__image {
    width: 374px;
  }
}

.feed-lines {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .feed-lines {
    margin-top: 150px;
  }
}

.feed-lines__heading {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .feed-lines__heading {
    text-align: center;
  }
}

.feed-lines__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .feed-lines__title {
    font-size: 32px;
    line-height: 1.3;
  }
}

.feed-lines__intro {
  /* max-width: 300px; */
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .feed-lines__intro {
    max-width: none;
    font-size: 20px;
    line-height: 1.45;
  }
}

.feed-lines__intro-break {
  display: none;
}

@media (min-width: 768px) {
  .feed-lines__intro-break {
    display: initial;
  }
}

.feed-lines__slider {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1230px) {
  .feed-lines__slider {
    overflow: visible;
  }
}

.feed-lines__list {
  display: flex;
  align-items: stretch;
}

@media (min-width: 1230px) {
  .feed-lines__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    transform: none;
  }
}

.feed-line-card {
  flex: 0 0 280px;
  width: 280px;
  height: auto;
  box-sizing: border-box;
}

@media (min-width: 1230px) {
  .feed-line-card {
    width: auto;
  }
}

.feed-line-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 570 / 810;
}

.feed-line-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  appearance: none;
  border: 0;
  border-radius: 12px;
  box-sizing: border-box;
  outline: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .feed-line-card__face {
    padding: 20px;
    border-radius: 20px;
  }
}

.feed-line-card__face--front {
  align-items: stretch;
  background: #f4f4f4;
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
  text-align: left;
  visibility: visible;
}

.feed-line-card__face:focus,
.feed-line-card__face:active,
.feed-line-card__icon:focus,
.feed-line-card__icon:active {
  outline: none;
  box-shadow: none;
}

.feed-line-card__face--back {
  background-color: #f4f4f4;
  color: #0e0e0e;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.feed-line-card.is-flipped .feed-line-card__face--front {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.feed-line-card.is-flipped .feed-line-card__face--back {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.feed-line-card--classic .feed-line-card__face--back {
  background-color: #dde0f9;
}

.feed-line-card--monoprotein .feed-line-card__face--back {
  background-color: #c4ecf3;
}

.feed-line-card--extra .feed-line-card__face--back {
  background-color: #f4cfe1;
}

.feed-line-card--perventive .feed-line-card__face--back {
  background-color: #f4f4f4;
}

.feed-line-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.feed-line-card__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.feed-line-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-line-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.feed-line-card__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  color: inherit;
}

@media (min-width: 768px) {
  .feed-line-card__title {
  }
}

.feed-line-card__face--back .feed-line-card__title {
  font-size: 24px;
  line-height: 1.25;
}

.feed-line-card__subtitle {
  max-width: 250px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

@media (min-width: 768px) {
  .feed-line-card__subtitle {
  }
}

.feed-line-card__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .feed-line-card__icon {
  }
}

.feed-line-card__icon--dark {
  color: #0e0e0e;
  border-color: #0e0e0e;
  cursor: pointer;
}

.feed-line-card__text {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .feed-line-card__text {
  }
}

.feed-line-card__link {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .feed-line-card__link {
  }
}

.feed-line-card__product {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  display: block;
  width: 200px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .feed-line-card__product {
    right: 22px;
    bottom: 18px;
  }
}

.feed-line-card__product--monoprotein {
  right: 12px;
}

.feed-line-card__product--extra {
  right: 10px;
  bottom: 20px;
}

.feed-line-card__product--perventive {
  right: 12px;
  bottom: 24px;
}

.reviews {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .reviews {
    margin-top: 150px;
  }
}

.reviews__heading {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .reviews__heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
  }
}

.reviews__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .reviews__title {
    font-size: 32px;
    line-height: 1.3;
  }
}

.reviews__intro {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

.reviews__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .reviews__top {
    margin-bottom: 22px;
  }
}

.reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .reviews__summary {
    gap: 24px;
  }
}

.reviews__label {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .reviews__label {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
  }
}

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

.reviews__rating-icon {
  display: block;
  flex: 0 0 auto;
}

.reviews__count,
.reviews__all {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #0e0e0e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews__desktop-arrows {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .reviews__desktop-arrows {
    display: flex;
    width: 96px;
    justify-content: space-between;
  }
}

.reviews__desktop-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.reviews__desktop-arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0.45;
}

.reviews__desktop-arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.reviews__desktop-arrow svg {
  display: block;
  width: 33px;
  height: 33px;
}

.reviews__slider {
  width: 100%;
  overflow: hidden;
}

.reviews__list {
  display: flex;
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 275px;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .review-card {
    min-height: 290px;
    padding: 20px;
    border-radius: 8px;
  }
}

.review-card__product {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  /* align-items: start; */
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
}

@media (min-width: 768px) {
  .review-card__product {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }
}

.review-card__image {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .review-card__image {
    width: 88px;
  }
}

.review-card__product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.review-card__product-name {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: #0e0e0e;
}

.review-card__product-link,
.review-card__more {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.review-card__product-link {
  margin-top: auto;
}
.review-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 14px;
}

.review-card__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.review-card__star {
  display: block;
  width: 18px;
  height: 17px;
  background-color: #42a1ae;
  clip-path: path(
    "M8.56088 13.7L4.41088 16.2C4.22754 16.3167 4.03588 16.3667 3.83588 16.35C3.63588 16.3333 3.46088 16.2667 3.31088 16.15C3.16088 16.0333 3.04421 15.8877 2.96088 15.713C2.87754 15.5383 2.86088 15.3423 2.91088 15.125L4.01088 10.4L0.335876 7.225C0.169209 7.075 0.0652091 6.904 0.0238758 6.712C-0.0174575 6.52 -0.00512426 6.33267 0.0608757 6.15C0.126876 5.96733 0.226876 5.81733 0.360876 5.7C0.494876 5.58267 0.678209 5.50767 0.910876 5.475L5.76088 5.05L7.63588 0.6C7.71921 0.4 7.84854 0.25 8.02388 0.15C8.19921 0.0499999 8.37821 0 8.56088 0C8.74354 0 8.92254 0.0499999 9.09788 0.15C9.27321 0.25 9.40254 0.4 9.48588 0.6L11.3609 5.05L16.2109 5.475C16.4442 5.50833 16.6275 5.58333 16.7609 5.7C16.8942 5.81667 16.9942 5.96667 17.0609 6.15C17.1275 6.33333 17.1402 6.521 17.0989 6.713C17.0575 6.905 16.9532 7.07567 16.7859 7.225L13.1109 10.4L14.2109 15.125C14.2609 15.3417 14.2442 15.5377 14.1609 15.713C14.0775 15.8883 13.9609 16.034 13.8109 16.15C13.6609 16.266 13.4859 16.3327 13.2859 16.35C13.0859 16.3673 12.8942 16.3173 12.7109 16.2L8.56088 13.7Z"
  );
}

.review-card__meta {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #7f7f7f;
}

.review-card__text {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: #0e0e0e;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.reviews__pagination {
  display: flex;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.reviews__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews__bullet.is-active {
  background: #000;
  width: 24px;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .review-card__text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.review-card__more {
  margin-top: auto;
}

.reviews__mobile-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  max-width: 100%;
  overflow: hidden;
}
.actions__mobile-navigation .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.reviews__mobile-navigation .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  transform:none;
}

@media (min-width: 768px) {
  .reviews__mobile-navigation {
    display: none;
  }
}

.reviews__mobile-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 32px;
  padding: 0;
  color: #bbe4e9;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.reviews__mobile-arrow.swiper-button-disabled {
  color: #d8d8d8;
  cursor: default;
}

.reviews__mobile-arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.reviews__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.reviews .reviews__pagination .swiper-pagination-bullet {
  flex: 1 1 20px;
  width: auto;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 2px;
  opacity: 1;
  transition:
    flex-grow 0.3s ease,
    background-color 0.3s ease;
  min-width: 20px;
}

.reviews .reviews__pagination .swiper-pagination-bullet-active {
  flex-grow: 5;
  background-color: #d7eff2;
  min-width: 68px;
}

.reviews__all {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
}

@media (min-width: 768px) {
  .reviews__all {
    display: none;
  }
}

.actions {
  width: 100vw;
  margin: 100px calc(50% - 50vw) 0;
  padding: 22px 0 18px;
  background-color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .actions {
    margin-top: 150px;
    padding: 60px 0 54px;
  }
}

.actions__inner {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.actions__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .actions__top {
    margin-bottom: 28px;
  }
}

.actions__tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

@media (min-width: 768px) {
  .actions__tabs {
    gap: 12px;
    padding-left: 20px;
  }
}

.actions__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 4px;
  padding-inline: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #0e0e0e;
  background: transparent;
  border: 0;
  cursor: pointer;
  min-height: 34px;
}
.actions__tab.is-active {
  font-size: 20px;
}

@media (min-width: 768px) {
  .actions__tab {
    padding-inline: 20px;
    font-size: 24px;
    line-height: 1.3;
    min-height: 52px;
  }
  .actions__tab.is-active {
    font-size: 32px;
  }
}

.actions__tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #42a1ae;
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.actions__tab.is-active::after {
  opacity: 1;
}

.actions__tab:focus-visible {
  /* outline: 2px solid #42a1ae;
  outline-offset: 3px; */
}

.actions__desktop-arrows {
  display: none;
  align-items: center;
  gap: 30px;
  margin-right: 1px;
}

@media (min-width: 768px) {
  .actions__desktop-arrows.is-active {
    display: flex;
  }
}

.actions__desktop-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.actions__desktop-arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0.45;
}

.actions__desktop-arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.actions__desktop-arrow svg {
  display: block;
  width: 33px;
  height: 33px;
}

.actions__panel[hidden],
.actions__desktop-arrows[hidden] {
  display: none;
}

.actions__slider {
  width: 100%;
  overflow: hidden;
}

.actions__list {
  display: flex;
  align-items: stretch;
}

.action-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 16px;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 20px;
  min-height: 405px;
}

@media (min-width: 768px) {
  .action-card {
  }
}

.action-card__image {
  display: block;
  width: 100%;
  height: clamp(164px, 59.7vw, 230px);
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .action-card__image {
    height: auto;
    aspect-ratio: 358 / 230;
  }
}

.action-card__title {
  display: -webkit-box;
  /* min-height: 88px; */
  margin: 30px 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #0e0e0e;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (min-width: 768px) {
  .action-card__title {
    min-height: 65px;
    margin: 12px 0;
  }
}

.action-card__link {
  width: 100%;
  margin-top: auto;
}

@media (min-width: 768px) {
  .action-card__link {
    width: 236px;
  }
}

.actions__mobile-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .actions__mobile-navigation {
    display: none;
  }
}

.actions__mobile-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 32px;
  padding: 0;
  color: #bbe4e9;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.actions__mobile-arrow.swiper-button-disabled {
  color: #d8d8d8;
  cursor: default;
}

.actions__mobile-arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.actions__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.actions .actions__pagination .swiper-pagination-bullet {
  flex: 1 1 20px;
  width: auto;
  min-width: 20px;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 2px;
  opacity: 1;
  transition:
    flex-grow 0.3s ease,
    background-color 0.3s ease;
}

.actions .actions__pagination .swiper-pagination-bullet-active {
  flex-grow: 5;
  min-width: 68px;
  background-color: #d7eff2;
}

.actions__all {
  display: block;
  width: fit-content;
  margin: 34px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #0e0e0e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .actions__all {
    margin: 22px 0 0 auto;
  }
}

.backform {
  margin: 100px 0 0;
}

.footer_form {
  display: none;
}
.main_title div {
  background: #002F87;
  border-radius: 8px;
  padding: 3px 11px;
  color: #fff;
  box-sizing: border-box;
  margin-bottom: 4px;
  width: max-content;
}
.main-video:after {
  display: none;
}