.swiper-wrapper {
  display: flex;
  align-items: stretch; /* Заставляет все дочерние элементы (слайды) растягиваться на одинаковую высоту */
}

.swiper-slide {
  height: auto !important; /* Сбрасываем возможную фиксированную высоту от Swiper */
  display: flex; /* Чтобы карточка внутри могла растянуться на 100% высоты */
  flex-direction: column;
}

.tecnologies-section {
  padding: 40px 0;
}

.application-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.application-section__header .h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

.slider-nav {
  --slider-button: -10px !important;
  display: flex;
  gap: 30px;
}
.slider-nav:hover{
  background-color: transparent !important;
}

.slider-nav .swiper-button-prev,
.slider-nav .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  margin: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.slider-nav .swiper-button-prev::after,
.slider-nav .swiper-button-next::after {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.slider-nav .swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tecnologies-card {
  display: flex;
  flex-direction: column;
  width: 100%; /* Занять всю ширину слайда */
  height: 100%; /* Занять всю ВЫРОВНЕННУЮ высоту слайда */
}

/*.application-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}*/

.application-card__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tecnogolies-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.tecnogolies-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.tecnogolies-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  hyphens: auto;
}

h3 {
  line-height: inherit !important;
}

.application-card__image-link {
  display: flex;
}

.application-card__image {
  width: 70%;
  margin: 0 auto;
}

.application-section .application-card__image {
  width: 100%;
  padding-top: 56.25%;
}