
.zajawka{
width: 900px;
margin: 0 auto 50px auto;
text-align: center;
}
.products{
display: grid;
grid-gap:40px 40px;
grid-template-columns: 1fr 1fr 1fr;
}
.products a{
display: block;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 3px 15px rgba(37,146,189,0.2);
transition: all 0.5s ease-out 0s;
}
.products a:hover{
box-shadow: 0 1px 1px rgba(37,146,189,0.2);
}
.products a .spImage{
background: url(../images/bg_pr.png) 50% 50% no-repeat;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
z-index: 0;
}
.products a .spImage:after{
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top:0;
margin: auto;
width: 236px;
height: 236px;
background-color: #FFFFFF;
border-radius: 50%;
z-index: -1;
}
.products a .spImage img{
max-width: 100%;
height: auto;
transition: all 0.5s ease-out 0s;
}
.products a:hover .spImage img{
transform: scale(1.1);
}
.products a .title{
color: #1F2763;
font-size: 40px;
font-weight: 600;
text-transform: uppercase;
text-align: center;
padding: 6px 10px 10px 10px;
background-color: #FFFFFF;
font-family: var(--gfont2-family);
}

@media screen and (max-width:1200px){
.products{display: flex;flex-wrap: wrap;justify-content: center}
.products a{width: calc(50% - 20px);max-width: 460px}
}
@media screen and (max-width:730px){
.products a{width: calc(100% - 20px);}
}

