.catalog-section {
  position: relative;
}

.catalog-section .swiper-wrapper {
  height: max-content;
}

.catalog-section .swiper-button-next:after, 
.catalog-section .swiper-button-prev:after {
  content: none;
}

.catalog-section .swiper-button-next,
.catalog-section .swiper-button-prev { 
  color: #F63F95;
  transition: all 0.3s;
}
.catalog-section .swiper {
  width: calc(100% - 60px);
}
.catalog-section .swiper-button-prev {
  left: -14px;
  transform: translateY(-50%);
}

.catalog-section .swiper-button-next {
  right: -14px;
  transform: translateY(-50%) rotate(-180deg);
}

.catalog-section .swiper-button-next:hover {
  color: #e24d72;
  transform: scale(1.15) translateY(-50%) rotate(-180deg);
}
.catalog-section .swiper-button-prev:hover {
  color: #e24d72;
  transform: scale(1.15) translateY(-50%);
}

.catalog-section_btn-block {
  text-align: end;
  margin-top: 50px;
}
.catalog-section_btn-block .btn {
  padding: 19px 55px 19px 60px;
}

@media(max-width: 575px) {
  .catalog-section_btn-block {
    text-align: center;
  }
}