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

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

.application-slider .swiper-slide {
  width: 342px; /* Задаем фиксированную ширину для каждой карточки */
  height: auto;   /* Позволяет карточкам иметь разную высоту, если нужно */
}

.application-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 {
  display: flex;
  gap: 10px;
}
.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;
}

.application-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;
}

.application-card__content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.application-card__title a {
  text-decoration: none;
  color: #222;
}

.application-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
}

.application-card__button-wrapper {
  margin-top: auto;
  margin-bottom: 5px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;

}

.btn.btn-primary {
  background-color: #e53935;
  color: #fff;
  border: 1px solid #e53935;
}
.btn.btn-primary:hover {
  background-color: #c62828;
  border-color: #c62828;
}

/* Bordered button for other items */
.mega-fixed-menu .btn.btn-default {
  color: #fff;
}
.btn.btn-default {
  background-color: transparent;
  color: #333;
  border: 1px solid #ddd;
  transition: color 0.3ms;
}
.btn.btn-default:hover {
  background-color: #c62828;
  border-color: #c62828;
  color: #fff;
}
h3 {
  line-height: inherit !important;
}
.application-card__button-wrapper .btn {
  border: 1px solid #333;
  text-transform: uppercase;
  border-radius: 5px;
}