/* Акции картинки */

.section_stocks{
    padding-top: 45px;
    padding-bottom: 33px;
}
@media (max-width: 900px){
  .section_stocks{
    padding-top: 30px;
    padding-bottom: 0px;
  }
}
.block_stock {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}
.block_stock img{
  width: 100%;
  transition: .3s;
  transform: scale(1);
  border-radius: 4px;
  height: 100%;
}
.block_stock a{
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) and (orientation: portrait){
  .section_stocks .block_stock{
    padding-left: 0px;
    padding-right: 0px;
  }
}
.block_stock a:hover img{
  transform: scale(1.03);
}

@media (max-width: 900px){
  .block_stock{
    margin-bottom: 15px;
  }
  .block_stock:nth-child(2) a:first-child{
    margin-bottom: 15px;
  }
}
.block_stock:nth-child(2) a:first-child{
  margin-bottom: 15px;
}
.block_stock:nth-child(2) a:last-child{
  margin-top: 15px;
}
.block_stock:nth-child(2) img{
  max-height: 200px;
  object-fit: cover;
}
.block_stock:nth-child(2){
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
