.catalog {
  color: white;
  background: linear-gradient(to bottom, #2C4545,#112929, #2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.catalog-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.catalog-cards-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  justify-content: center;
  align-items: center;
}

.catalog-card {
  position: relative;
  border-radius: 15px;
  z-index: 5;
  max-width: 380px;
  height: 450px;
  margin: 15px;
  background-color: #00000050;
  overflow: hidden;
}

.swiper.card-swiper {
  max-height: 350px;
}

.swiper-slide {
  >img { 
    max-width: 100%;
    max-height: 100%;
  }
}

.catalog-card-container {
  padding: 15px;
}

.catalog-card-title {
  font-weight: 600;
  font-size: 18px;
}

.catalog-card-text {
  font-size: 16px;
  margin: 15px 0;
}

.catalog-card-price {
  font-size: 20px;
  color: #00E016;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  color: #00E016;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  color: #00E016;
}

.catalog-btn {
  color: #d04b00;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Oswald', Arial, sans-serif;
    line-height: 1.15;
    font-weight: 400;
    border: 3px solid #d04b00;
    background-color: #d04c001c;
    padding: 0;
    width: 230px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px;
    margin-top: 40px;
}

.catalog-bg {
  position: absolute;
  top: -300px;
  right: -320px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.2; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.catalog-bg-2 {
  position: absolute;
  bottom: -300px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.85; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.catalog-bg-4 {
  position: absolute;
  top: -300px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.85; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.catalog-bg-3 {
  position: absolute;
  bottom: 150px;
  left: -150px;
  width: 600px;
  height: 600px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.25; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

@media (max-width: 720px) {
  .catalog-card {
    max-width: 360px;
  }

  .catalog-bg {
    bottom: -300px;
    right: 0px;
  }
  
  .catalog-bg-2 {
    position: absolute;
    bottom: -100px;
    left: 0px;
    width: 500px;
    height: 500px;
  }
  
  .catalog-bg-3 {
    position: absolute;
    top: 150px;
    left: -150px;
    width: 600px;
    height: 600px;
    object-fit: cover; /* картинка розтягується */
    opacity: 0.25; /* якщо треба трохи затемнити */
    z-index: 0; /* фон під контентом */
  }
}





