hover absolute

by Burduja Serghei

HTML

<section class="products">
      <div class="container">

            <h3 class="statistics__title">Наша продукция</h3>
          <div class="news__wrap">
              <div class="news__item">
                  <div class="products__image">
                      <img src="https://i.ibb.co/Jm1BgzF/picture-image.jpg" alt="">
                  </div>
                  <div class="news__text">  
                      <div class="news__title">
                       Выработка масла в год ...
                     </div>
                      <p class="news__description">
                        В Минск прибыли самые покупатели газа из Украины: «Автотранс», «НАДЕЖДА», «Укренерджи», ОККО, SOCAR, «БРСМ-Натфа», KLO и др. поставщиков представлляли. В Минск прибыли самые покупатели газа из Украины: «Автотранс», «НАДЕЖДА», «Укренерджи», ОККО, SOCAR, «БРСМ-Натфа», KLO и др. поставщиков представлляли. В Минск прибыли самые покупатели газа из Украины: «Автотранс», «НАДЕЖДА», «Укренерджи», ОККО, SOCAR, «БРСМ-Натфа», KLO и др. поставщиков представлляли. 
                      </p>
                  </div>
              </div>
             <div class="news__item">
                  <div class="products__image">
                      <img src="https://i.ibb.co/Jm1BgzF/picture-image.jpg" alt="">
                  </div>
                  <div class="news__text">  
                      <div class="news__title">
                       Выработка масла в год ...
                     </div>
                      <p class="news__description">
                        В Минск прибыли самые покупатели газа из Украины: «Автотранс», «НАДЕЖДА», «Укренерджи», ОККО, SOCAR, «БРСМ-Натфа», KLO и др. поставщиков представлляли. В Минск прибыли самые покупатели газа из Украины: «Автотранс», «НАДЕЖДА», «Укренерджи», ОККО, SOCAR, «БРСМ-Натфа», KLO и др. поставщиков представлляли. В Минск прибыли самые покупатели газа из Украины: «Автотранс», «НАДЕЖДА», «Укренерджи», ОККО, SOCAR, «БРСМ-Натфа», KLO и др....

CSS

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  text-decoration: none; }

fieldset,
img,
abbr {
  border: 0; }

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

ul li {
  list-style: none; }

caption,
th {
  text-align: left; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  outline: none; }

legend {
  color: #000; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block; }


body {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  background-color: #fff;
  line-height: 18px;
  font-family: Montserrat-Regular, sans-serif;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  min-width: 320px;
  font-size: 14px; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto; }

.container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 5px; }


.news {
  margin-bottom: 30px; }
  .news__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
    margin-top: 32px; }
    @media screen and (max-width: 767px) {
      .news__wrap {
        max-width: 400px;
        margin: 0 auto;
        margin-top: 25px; } }
  .news__item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
   ...