.rowsOfery{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-gap: 15px;
}
.rowsOfery:after{
content: "";
display: block;
clear: both;
}
.rowsOfery .oferta{

}

.rowsOfery .oferta a{
display: block;
box-sizing: border-box;
height: 100%;
transition: all 0.5s ease-out 0s;
border: 1px solid #48BA8A;
border-radius: 6px;
padding: 20px 15px 25px 20px;
background-color: #FFFFFF;
}
.rowsOfery .oferta a:hover{
box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.16);
}

.rowsOfery .oferta a .spTop{
display: block;
text-align: center;
margin-bottom: 30px;
}
.rowsOfery .oferta a .spTop img {
border-radius: 50%;
max-width: 100%;
height: auto;
}
.rowsOfery .oferta a .p_top_tit{
color: #333336;
font-family: 'Poppins', sans-serif;
font-size: 19px;
font-weight: 700;
padding-bottom: 13px;
margin-bottom: 22px;
position: relative;
white-space: normal;
display: block;
}
.rowsOfery .oferta a .p_top_tit::after {
content: "";
display: block;
width: 72px;
height: 3px;
background-color: #48BA8A;
border-radius: 25px;
bottom: 0px;
left: 0px;
position: absolute;
}

@media screen and (max-width:1000px) {
.rowsOfery{grid-template-columns: 1fr 1fr 1fr;}
.rowsOfery .oferta a .p_top_tit {font-size: 16px}
}

@media screen and (max-width:1000px) {
.rowsOfery{grid-template-columns: 1fr 1fr;}
}