.buying {
  color: white;
  background: linear-gradient(to bottom,#112929, #112929, #2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
}

.buying-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/buy_auto.png.webp);
  background-position: center left;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  position: relative;
}

.buying-cards-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 3;
  position: relative;
}

.buying-card {
  width: 394px;
  height: 244px;
  background-image: url(../images/Rectangle_69.png.webp);
  background-size: 100% 100%;
  padding: 40px;
  z-index: 3;
  position: relative;
}

.buying-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
}


.buying-card-number {
  color: #00e016;
  font-size: 50px;
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.5;
  font-weight: 300;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  margin-right: 5px;
}

.buying-card-title {
  color: #87e37b;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 256px;
}

.buying-card-bottom {
  font-size: 20px;
  font-weight: 400;
  max-width: 300px;
  margin-top: 10px;
}

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

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

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


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

@media (max-width: 720px) {
  .buying-title {
    font-size: 40px;
    background-size: contain;
    background-position: bottom;
  }
}