.experience {
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .experience {
    padding: 25px 0;
  }
}

.experience__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 1024px) {
  .experience__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}

.experience__inner {
  max-width: 640px;
  width: 100%;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (max-width: 1024px) {
  .experience__inner {
    max-width: 100%;
  }
}

.experience__sub-title {
  display: block;
  margin-bottom: 15px;
}

.experience__title {
  margin-bottom: 15px;
}

.experience__descr {
  margin-bottom: 25px;
}

.experience__descr p {
  font-size: 15px;
  margin: 0 0 10px;
}

.experience__descr p:last-child {
  margin-bottom: 0;
}

.experience__box-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 560px) {
  .experience__box-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.experience__img-box {
  max-width: 500px;
  width: 100%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: 500px;
  flex-basis: 500px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px #00000040;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .experience__img-box {
    max-width: 100%;
    aspect-ratio: auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.experience__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .experience__img {
    height: auto;
    aspect-ratio: 2/1.2;
  }
}

.experience__img-box--mobile {
  display: none;
}

.experience__img-box--desktop {
  display: block;
}

@media (max-width: 1024px) {
  .experience__img-box--mobile {
    display: block;
    margin-bottom: 25px;
  }

  .experience__img-box--desktop {
    display: none;
  }
}

.philosophy {
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .philosophy {
    padding: 25px 0;
  }
}

.philosophy__bg {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#5dcae4),
      to(#0070e1));
  background: linear-gradient(180deg, #5dcae4 0%, #0070e1 100%);
  padding: 50px 0;
}

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

.philosophy__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 25px;
  color: #fff;
}

.wp-singular .philosophy__header {
  max-width: 860px;
}

.philosophy__title {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.philosophy__subtitle {
  margin: 0;
}

.philosophy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.philosophy__bottom {
  max-width: 640px;
  margin: 25px auto 0;
  color: #fff;
  text-align: center;
}

@media (max-width: 560px) {
  .philosophy__bottom {
    margin-top: 15px;
  }
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  gap: 10px;
  min-width: 200px;
  max-width: 307px;
  background-color: #fafbfc;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 16px 10px;
  -webkit-transition: -webkit-box-shadow 0.25s;
  transition: -webkit-box-shadow 0.25s;
  transition: box-shadow 0.25s;
  transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
}

@media (hover: hover) and (pointer: fine) {

  .card::before,
  .card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
  }

  .card::before {
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 45%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.22) 55%,
        rgba(255, 255, 255, 0) 100%);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: translateX(-120%) rotate(25deg);
    transform: translateX(-120%) rotate(25deg);
  }

  .card::after {
    background: radial-gradient(circle at 20% 50%,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 60%) 0 0/40% 100% repeat-x;
    -webkit-filter: blur(6px);
    filter: blur(6px);
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }

  .card:hover::before {
    -webkit-animation: card-shine 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation: card-shine 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 1;
  }

  .card:hover::after {
    -webkit-animation: card-wave 4.6s ease-out forwards;
    animation: card-wave 4.6s ease-out forwards;
    opacity: 0.6;
  }
}

@-webkit-keyframes card-shine {
  0% {
    -webkit-transform: translateX(-120%) rotate(25deg);
    transform: translateX(-120%) rotate(25deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(120%) rotate(25deg);
    transform: translateX(120%) rotate(25deg);
    opacity: 0;
  }
}

@keyframes card-shine {
  0% {
    -webkit-transform: translateX(-120%) rotate(25deg);
    transform: translateX(-120%) rotate(25deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(120%) rotate(25deg);
    transform: translateX(120%) rotate(25deg);
    opacity: 0;
  }
}

@-webkit-keyframes card-wave {
  0% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    opacity: 0;
  }

  15% {
    opacity: 0.6;
  }

  85% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes card-wave {
  0% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    opacity: 0;
  }

  15% {
    opacity: 0.6;
  }

  85% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    opacity: 0;
  }
}

.card__icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 560px) {
  .card__icon {
    width: 75px;
    height: 75px;
  }
}

.card__icon-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.card__title {
  font-size: 15px;
  font-weight: 600;
  min-height: 45px;
  color: #2c2c2c;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.card__text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #2c2c2c;
}

.parts-overview {
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .parts-overview {
    padding: 25px 0;
  }
}

.parts-overview__top {
  max-width: 635px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .parts-overview__top {
    margin-bottom: 40px;
  }
}

.parts-overview__top.parts-overview__top--full {
  max-width: 100%;
  width: 100%;
}

.parts-overview__descr p:last-child {
  margin-bottom: 0;
}

.parts-overview__title {
  margin-bottom: 25px;
}

.parts-overview__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}

@media (max-width: 890px) {
  .parts-overview__list {
    grid-template-columns: 1fr;
  }
}

.teaser {
  position: relative;
  overflow: hidden;
  background: #fafbfc;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 8px 15px 8px 20px;
  display: flex;
  gap: 10px;
  border-left: 10px solid #0bbbef;
}

@media (max-width: 560px) {
  .teaser {
    flex-direction: column;
  }
}


@media (hover: hover) and (pointer: fine) {

  .teaser::before,
  .teaser::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
  }

  .teaser::before {
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 45%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.22) 55%,
        rgba(255, 255, 255, 0) 100%);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: translateX(-120%) rotate(25deg);
    transform: translateX(-120%) rotate(25deg);
  }

  .teaser::after {
    background: radial-gradient(circle at 20% 50%,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 60%) 0 0/40% 100% repeat-x;
    -webkit-filter: blur(6px);
    filter: blur(6px);
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }

  .teaser:hover::before {
    -webkit-animation: card-shine 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation: card-shine 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 1;
  }

  .teaser:hover::after {
    -webkit-animation: card-wave 4.6s ease-out forwards;
    animation: card-wave 4.6s ease-out forwards;
    opacity: 0.6;
  }
}

@keyframes card-shine {
  0% {
    -webkit-transform: translateX(-120%) rotate(25deg);
    transform: translateX(-120%) rotate(25deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(120%) rotate(25deg);
    transform: translateX(120%) rotate(25deg);
    opacity: 0;
  }
}

@keyframes card-wave {
  0% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    opacity: 0;
  }

  15% {
    opacity: 0.6;
  }

  85% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .teaser {
    padding-left: 10px;
    border-left: 5px solid #0bbbef;
    grid-template-columns: 50px auto;
  }
}

@media (max-width: 560px) {
  .teaser {
    padding: 5px;
    border-left: 2px solid #0bbbef;
    grid-template-columns: 25px auto;
  }
}

.teaser__icon {
  max-width: 75px;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .teaser__icon {
    max-width: 50px;
  }
}


.teaser__icon-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.teaser__title {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: #252525;
}

@media (max-width: 767px) {
  .teaser__title {
    font-size: 16px;
  }
}

.teaser__text {
  margin: 0;
  color: #252525;
}

@media (max-width: 560px) {
  .teaser__text {
    font-size: 14px;
  }
}

.product-cards {
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .product-cards {
    padding: 25px 0;
  }
}

.product-cards__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 19px;
}

@media (max-width: 680px) {
  .product-cards__wrap {
    justify-content: center;
  }
}

.product-card {
  min-height: 500px;
  max-width: 308px;
  background-color: #fff;
  border-radius: 32px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 15px 15px 16px 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.product-card__badge {
  background-image: url("../images/ribon.webp");
  width: 120px;
  height: 40px;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 1;
}

.product-card__badge span {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0 0 10px;
  font-size: 12px;
}

.product-card__image {
  max-width: 278px;
  width: 100%;
  height: 235px;
}

.product-card__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-card__title {
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 600;
}

.product-card__description {
  font-size: 13px;
  line-height: 1.4;
  color: #2c2c2c;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 0 5px 0;
}

.product-card__box-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card__pdf-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 14px;
  color: #004f9f;
  text-align: center;
  border: 1px solid #004f9f;
  min-width: 185px;
  padding: 7px 13px;
  border-radius: 32px;
  -webkit-transition: all ease-in 0.4s;
  transition: all ease-in 0.4s;
}

.product-card__pdf-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card__schema-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #2c2c2c;
  -webkit-transition: color ease-in 0.4s;
  margin-left: auto;
  transition: color ease-in 0.4s;
}

@media (max-width: 360px) {

  .product-card__box-btn {
    justify-content: center;
  }

  .product-card__schema-link {
    margin: 0;
  }
}

.product-card__schema-link svg {
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .product-card .product-card__pdf-button:hover {
    background-color: #004f9f;
    color: #fff;
  }

  .product-card .product-card__schema-link:hover {
    color: #004f9f;
  }

  .product-card .product-card__schema-link:hover svg {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

.teams__top {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .teams__top {
    margin-bottom: 25px;
  }
}

.teams__box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1024px) {
  .teams__box-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.teams__title {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

@media (max-width: 1024px) {
  .teams__title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.teams__description {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin: 0;
  color: #444c56;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .teams__description {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.process-steps {
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .process-steps {
    padding: 25px 0;
  }
}

.process-steps__title {
  margin-bottom: 25px;
  max-width: 635px;
}

@media (max-width: 1024px) {
  .process-steps__title {
    margin-bottom: 25px;
  }
}

.process-steps__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

@media (max-width: 767px) {
  .process-steps__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.process-steps__card {
  max-width: 307px;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.process-steps__box-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.process-steps__num {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #004f9f;
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  border: 4px solid white;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.process-steps__num::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 20px solid white;
}

.process-steps__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 10px;
}

.process-steps__caption {
  background-color: #004f9f;
  color: #fff;
  text-align: center;
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  min-height: 50px;
  border-radius: 5px;
  margin: 0;
}

.process-steps__text {
  padding: 0 10px 10px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  line-height: 1.3;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #252525;
}

.process-steps__text p {
  margin: 0;
  font-size: 14px;
}

/* LightBox  */

.product-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.icon-search {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s ease-in;
}

.icon-search:hover {
  background-color: #004f9f;
}


.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  transition: opacity 0.3s ease;
}

.slider-image.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: #004f9f;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.slider-btn,
.slider-dots {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 769px) {

  .product-card:hover .slider-btn,
  .product-card:hover .slider-dots {
    opacity: 1;
  }
}

@media (max-width: 768px) {

  .slider-btn,
  .slider-dots {
    opacity: 1;
  }
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}


.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}

/* Приховати елементи слайдера якщо тільки одне зображення */
.product-card__image[data-single-image="true"] .slider-btn,
.product-card__image[data-single-image="true"] .slider-dots {
  display: none;
}

/* lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  width: min(90vw, 920px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.lightbox-slider {
  position: relative;
  width: min(90vw, 920px);
  max-height: 80vh;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  font-size: 26px;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: background .25s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, .7);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .15), 0 2px 8px rgba(0, 0, 0, .3);
  z-index: 15;
}

.lightbox-btn>svg {
  position: absolute;
  top: 25%;
  left: 25%;
}

.lightbox-btn:hover {
  background: rgba(0, 0, 0, .6);
}

.lightbox .prev-btn {
  left: 12px;
}

.lightbox .next-btn {
  right: 12px;
}

.lightbox-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
}

.lightbox-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
}

.lightbox-dots .dot.active {
  background: #fff;
}

.lightbox-counter {
  color: #fff;
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {

  .lightbox-content,
  .lightbox-slider {
    width: 96vw;
    aspect-ratio: 3 / 4;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .lightbox-btn {
    width: 44px;
    height: 44px;
  }

  .lightbox .prev-btn {
    left: 8px;
  }

  .lightbox .next-btn {
    right: 8px;
  }

  .lightbox-dots {
    bottom: 8px;
    gap: 6px;
    padding: 3px 6px;
  }

  .lightbox-dots .dot {
    width: 7px;
    height: 7px;
  }

  .lightbox-counter {
    margin-top: 8px;
    font-size: 13px;
  }
}

.altblock {
  padding: 50px 0;
}

.altblock__wrap {
  position: relative;
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(15, 25, 40, .06);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: 100%;
}

.altblock__inner {
  max-width: 610px;
  position: relative;
  z-index: 1;
}

.altblock .sub-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a62c9, #47a7d9);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}

.altblock__content {
  margin-bottom: 25px;
}

.altblock__content p {
  color: #444C56;
}

.altblock__img-box {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.altblock__img-box--mobile {
  display: block;
}

.altblock__img-box--desktop {
  display: none;
}

.altblock__img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(10, 30, 60, .10);
}

.rte .bg-mark {
  background: #e7f3ff;
  padding: .05em .25em;
  border-radius: .35em;
}

.altblock__btns {
  margin-top: 50px;
}

.altblock__btns .btn-product {
  display: block;
  width: fit-content;
  min-width: auto;
  border: 0.5px solid #004F9F;
  background-color: #FAFBFC;
  color: #004F9F;
  white-space: wrap;
}

@media (max-width: 1024px) {
  .altblock {
    padding: 25px 0;
  }
}

@media (min-width: 992px) {
  .altblock__wrap {
    grid-template-columns: 1fr 460px;
    align-items: center;
    padding: 50px 25px;
    gap: 40px;
    background-size: auto;
  }

  .altblock__img {
    max-width: 350px;
    height: 320px;
  }

  .altblock__img-box--mobile {
    display: none;
  }

  .altblock__img-box--desktop {
    display: block;
  }

  .altblock__btns {
    margin-top: 50px;
  }

  .altblock__btns .btn-product {
    border: 0.5px solid #004F9F;
    background-color: #FAFBFC;
    color: #004F9F;
  }
}

@media (max-width: 560px) {

  .altblock__wrap {
    padding: 15px;
  }

  .altblock__btns .btn-product {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .altblock__btns .btn-product {
    font-size: 11px;
  }
}