.pricing {
  position: relative;
  background: linear-gradient(180deg, #390d0d 0%, #030101 50%, #390d0d 100%);
  overflow: hidden;
}

.pricing > * {
  position: relative;
  z-index: 1;
}

.pricing__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pricing__background-image {
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 100%;
  height: auto;
  max-width: none;

  transform: translateX(-50%);
}

.pricing__container {
  padding: 4.86vw 10.07vw 5.56vw;
  display: flex;
  flex-direction: column;
  row-gap: 11.81vw;
  align-items: center;
}

.pricing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.13vw;
  width: 100%;
}

.pricing__title {
  font-family: Body Grotesque Large Trial Bold;
  font-weight: 700;
  font-size: 2.29vw;
  line-height: 2.78vw;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: white;
  margin: 0;
}

.pricing__tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 1.74vw;
}

.pricing__tab {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.11vw;
  letter-spacing: 0;
  padding: 1.11vw 1.67vw;
  border-radius: 0.69vw;
  transition: all 0.4s ease;
  position: relative;
  display: block;
  color: black;
  background: white;
  border: none;
}

.pricing__tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  border-radius: 0.69vw;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing__tab:hover {
  background: unset;
  color: white;
}

.pricing__tab:hover::after {
  opacity: 1;
}

.pricing__tab:focus {
  outline: none;
}

.pricing__tab--active {
  background: unset;
  color: white;
}

.pricing__tab--active::after {
  opacity: 1;
}

/*PACKAGES*/

#pricing-vets {
  display: none !important;
}

.pricing__packages {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 3.13vw 6.6vw 3.47vw;
  width: 100%;
  border-radius: 0.56vw;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  row-gap: 3.13vw;
}

.pricing__packages--active {
  display: flex;
}

.pricing__packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../img/pricing/pricing__packages-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0.56vw;
  z-index: -1;
  border: 0.07vw solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.21vw);
  -webkit-backdrop-filter: blur(0.21vw);
}

.pricing__packages-title {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.53vw;
  letter-spacing: 0;
  text-align: center;
  color: white;
}

.pricing__package-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.74vw;
  align-items: stretch;
  width: 100%;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 19.44vw;
  padding: 2.78vw 1.39vw 1.39vw 3.13vw;
  border-radius: 0.69vw;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 0.28vw 0.28vw 0 rgba(0, 0, 0, 0.25);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../img/pricing/package-card-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0.56vw;
  z-index: -1;
  border: 0.07vw solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.21vw);
}

.package-card--accent {
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
}

.package-card--accent::before {
  display: none;
}

.package-card__badge {
  position: absolute;
  top: -1.04vw;
  right: -3.26vw;
  transform: translateX(-50%);
  padding: 0.63vw 1.25vw;
  border-radius: 0.49vw;
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  color: white;
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 0.81vw;
  line-height: 0.83vw;
  letter-spacing: 0;
}

.package-card__title {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
  margin-bottom: 1.39vw;
}

.package-card__label {
  font-family: TT Travels Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
}

.package-card__list {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 1.04vw;
  padding: 0;
  list-style: none;
}

.package-card__item {
  position: relative;
  padding-left: 1.11vw;
  font-family: TT Travels Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
}

.package-card__item::before {
  content: "";
  background-image: url(/img/pricing/point.png);
  background-size: 0.9vw 0.63vw;
  width: 0.9vw;
  height: 0.63vw;
  position: absolute;
  left: -0.35vw;
  top: 0.21vw;
}

.package-card__price {
  align-self: flex-end;
  margin-top: auto;
  padding: 0.97vw 0.83vw;
  border-radius: 0.56vw;
  background: rgba(255, 255, 255, 0.1);
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 0.9vw;
  line-height: 0.9vw;
  letter-spacing: 0;
  color: white;
  position: relative;
  z-index: 1;
}

.package-card__price::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../img/pricing/bottom-btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0.56vw;
  z-index: -1;
  border: 0.07vw solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.21vw);
  -webkit-backdrop-filter: blur(0.21vw);
}

.pricing__button {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.11vw;
  letter-spacing: 0;
  color: white;
  padding: 1.11vw 1.67vw;
  border-radius: 0.69vw;
  transition: all 0.4s ease;
  position: relative;
  display: block;
  box-shadow: 0 0.28vw 0.28vw 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.pricing__button:hover {
  color: black;
  background: white;
}

.pricing__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  border-radius: 0.69vw;
  z-index: -1;

  opacity: 1;
  transition: opacity 0.4s ease;
}

.pricing__button:hover::after {
  opacity: 0;
}

/*PACKAGES*/

.pricing__partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.13vw;
}

.partners__title {
  font-family: Body Grotesque Large Trial Bold;
  font-weight: 700;
  font-size: 2.29vw;
  line-height: 2.78vw;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: white;
  margin: 0;
}

.partners__card {
  position: relative;
}

.partners__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.74vw;
  border-radius: 0.69vw;
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  box-shadow: 0 0.28vw 0.28vw 0 rgba(0, 0, 0, 0.25);
  padding: 3.47vw 14.93vw 2.43vw 3.47vw;
}

.partners__card-title {
  margin: 0;
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.39vw;
  line-height: 1.67vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
}

.partners__card-text {
  margin: 0;
  font-family: TT Travels Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
}

.partners__button {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.11vw;
  letter-spacing: 0;
  color: white;
  padding: 1.11vw 2.22vw;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.69vw;
  position: relative;
  z-index: 1;
}

.partners__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../img/program/btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0.69vw;
  z-index: -1;
  border: 0.07vw solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.21vw);
  -webkit-backdrop-filter: blur(0.21vw);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.partners__card-decor {
  position: absolute;
  bottom: 0;
  right: -7.29vw;
}

.partners__card-image {
  height: 17.71vw;
  width: auto;
}

@media (max-width: 575.5px) {
  .pricing {
    background: linear-gradient(180deg, #000000 0%, #240905 50%, #250905 100%);
    position: relative;
  }

  .pricing::before {
    content: "";
    width: 100%;
    height: 100.31vw;
    background-image: url(../../img/pricing/before-bg.png);
    background-size: 100% 100.31vw;
    position: absolute;
    top: 0;
    left: 0;
  }

  .pricing__container {
    padding: 14.06vw 3.12vw 32.81vw;
    row-gap: 31.25vw;
  }

  .pricing__content {
    row-gap: 7.81vw;
  }

  .pricing__title {
    font-size: 4.69vw;
    line-height: 5.62vw;
  }

  .pricing__tabs {
    flex-direction: column;
    row-gap: 3.12vw;
  }

  .pricing__tab {
    font-size: 3.44vw;
    line-height: 3.75vw;
    padding: 3.44vw 3.75vw;
    border-radius: 2.19vw;
    min-width: 66.88vw;
  }

  .pricing__tab::after {
    border-radius: 2.19vw;
  }

  /*PACKAGES*/

  .pricing__packages {
    padding: 10.94vw 3.12vw 12.5vw;
    border-radius: 2.19vw;
    row-gap: 10.94vw;
  }

  .pricing__packages::before {
    border-radius: 2.19vw;
  }

  .pricing__packages-title {
    font-size: 3.44vw;
    line-height: 4.06vw;
  }

  .pricing__package-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.69vw;
  }

  .package-card {
    min-height: 59.38vw;
    padding: 9.38vw 7.81vw;
    border-radius: 2.19vw;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.97vw 0.97vw 0 rgba(0, 0, 0, 0.25);
  }

  .package-card--accent {
    background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  }

  .package-card::before {
    border-radius: 2.19vw;
  }

  .package-card__badge {
    top: -3.75vw;
    right: -10.94vw;
    padding: 2.19vw 4.38vw;
    border-radius: 1.75vw;
    background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
    font-size: 2.81vw;
    line-height: 3.12vw;
  }

  .package-card__title {
    font-size: 3.44vw;
    line-height: 4.06vw;
    margin-bottom: 4.69vw;
  }

  .package-card__label {
    font-size: 3.12vw;
    line-height: 3.75vw;
  }

  .package-card__list {
    margin: 0 0 0 3.12vw;
  }

  .package-card__item {
    font-size: 3.12vw;
    line-height: 3.75vw;
  }

  .package-card__item::before {
    content: "";
    background-image: url(../../img/pricing/point.png);
    background-size: 2.5vw 1.88vw;
    width: 2.5vw;
    height: 1.88vw;
    position: absolute;
    left: -2.5vw;
    top: 0.63vw;
  }

  .package-card__price {
    padding: 3.12vw 3.75vw;
    border-radius: 2.19vw;
    font-size: 2.81vw;
    line-height: 3.12vw;
    position: absolute;
    right: 6.25vw;
    bottom: -1.88vw;
    z-index: 1;
    min-width: 25.62vw;
    text-align: center;
  }

  .package-card__price::before {
    border-radius: 2.19vw;
    backdrop-filter: blur(0.63vw);
  }

  .pricing__button {
    display: none;
  }

  /*PACKAGES*/

  .pricing__partners {
    row-gap: 4.69vw;
  }

  .partners__title {
    font-size: 4.69vw;
    line-height: 5.62vw;
  }

  .partners__card-content {
    align-items: center;
    row-gap: 6.25vw;
    border-radius: 2.19vw;
    background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
    box-shadow: 0 0.86vw 0.86vw 0 rgba(0, 0, 0, 0.25);
    padding: 7.81vw 12.5vw;
    position: relative;
    max-width: 89.06vw;
  }

  .partners__card-title {
    font-size: 3.44vw;
    line-height: 4.06vw;
    text-align: center;
  }

  .partners__card-text {
    font-size: 3.12vw;
    line-height: 3.75vw;
    text-align: center;
  }

  .partners__button {
    position: absolute;
    bottom: -16.88vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.44vw;
    line-height: 3.75vw;
    padding: 3.44vw 5.62vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2.19vw;
    z-index: 1;
    white-space: nowrap;
  }

  .partners__button::before {
    border-radius: 2.19vw;
  }

  .partners__card-decor {
    position: absolute;
    bottom: -11.88vw;
    right: -5.31vw;
  }

  .partners__card-image {
    height: 28.12vw;
  }
}
