.stocks-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 27px;
  position: relative;
}
/* .stocks-holder:before {
  content: "";
  display: block;
  position: absolute;
  width: 167px;
  height: 148px;
  background-image: url(before-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: -20%;
} */
.stock-item {
  background-image: url(fireworks3.jpg);

  width: calc(100% / 2 - 15px);
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  margin-bottom: 30px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.stock-item::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgb(0, 0, 0, 0.4);
  border-radius: 25px;
}
.stock-item:nth-child(2n) {
  background-image: url(fireworks3.jpg);
}
.stock-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% + 25px);
  width: auto;
  max-width: 243px;
  object-fit: contain;
  object-position: center bottom;
  margin-right: -5px;
  margin-bottom: -35px;
}
.stock-item-info {
  padding: 30px 10px 30px 38px;
  display: flex;
  height: 100%;
  width: 70%;
  flex-direction: column;
}
.stock-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 150%;
  color: #f3760a;
  margin-bottom: 11px;
  z-index: 1;
}
.stock-desc {
  font-weight: 800;
  font-size: 28px;
  line-height: 120%;
  color: #f5d425;
  z-index: 1;
}
.stock-link {
  display: block;
  border: 1px solid #453c39;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 8px 30px;
  width: max-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #453c39;
}
.stock-link:hover {
  background-color: #453c39;
  color: #fff;
}
@media (max-width: 1199px) {
  .stock-icon {
    max-width: 48%;
  }
  .stock-desc {
    font-size: 30px;
  }
  .stock-item-info {
    width: 65%;
  }
  .stock-item {
    min-height: 270px;
  }
}
@media (max-width: 991px) {
  .stock-item-info {
    padding: 25px;
    padding-right: 5px;
    width: 72%;
  }
  .stock-desc {
    max-width: 190px;
    font-size: 23px;
  }
  .stock-title {
    font-size: 18px;
    line-height: 24px;
  }
  .stock-link {
    padding: 6px 20px;
    font-size: 14px;
  }
  .stock-item {
    width: calc(100% / 2 - 10px);
    min-height: 205px;
  }
}
@media (max-width: 767px) {
  .stocks-holder:before {
    display: none;
    background: none;
  }
  .stock-desc {
    max-width: none;
  }
  .stock-item {
    width: 100%;
  }
  .stock-title {
    min-width: 146px;
  }
}
@media (max-width: 500px) {
  .stock-item-info {
    width: 68%;
    padding-right: 0;
  }
  .stock-title br {
    display: none;
  }
  .stocks-holder {
    margin-bottom: 40px;
  }
}
@media (max-width: 360px) {
  .stock-desc {
    font-size: 21px;
  }
}
