.box_mod_products{
padding: 55px 0 60px 0;
background: url(../images/bg_products.png) 50% 50% no-repeat;
background-size: cover;
}
.div_mod_products{
width: 1500px;
padding: 0 15px;
margin: 0 auto;
box-sizing: border-box;
max-width: 100%;
}
.div_mod_products .zajawka{
width: 900px;
margin: 0 auto 50px auto;
text-align: center;
max-width: 100%;
}
.div_mod_products .products{
display: flex;
gap:40px;
align-items: center;
justify-content: space-between;
}
.div_mod_products .products a{
display: block;
width: 33.333%;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 3px 15px rgba(37,146,189,0.2);
transition: all 0.5s ease-out 0s;
}
.div_mod_products .products a:hover{
box-shadow: 0 1px 1px rgba(37,146,189,0.2);
}
.div_mod_products .products a .spImage{
background: url(../images/bg_pr.png) 50% 50% no-repeat;
display: flex;
align-items: center;
justify-content: center;
padding: 15px 0;
overflow: hidden;
position: relative;
z-index: 0;
background-size: cover;
}
.div_mod_products .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;
}
.div_mod_products .products a .spImage img{
max-width: 100%;
height: auto;
transition: all 0.5s ease-out 0s;
}
.div_mod_products .products a:hover .spImage img{
transform: scale(1.1);
}
.div_mod_products .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){
.div_mod_products .products{flex-wrap: wrap;justify-content: center}
.div_mod_products .products a{width: calc(50% - 20px);max-width: 460px}
}
@media screen and (max-width:730px){
.div_mod_products .products a{width: calc(100% - 20px);}
}

