.get-qure article{
  display:flex;
  flex-direction:column;
  text-align:center;
}
.get-qure ul{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  grid-auto-rows:180px;
  gap:24px;
  margin-top:32px;
}
.get-qure li{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-end;
  justify-content:flex-end;
  overflow:hidden;
  padding:20px;
  border-radius:10px;
}
.get-qure picture{
  position:absolute;
  inset:0;
  z-index:-1;
}
.get-qure img{
  -o-object-fit:cover;
     object-fit:cover;
  -o-object-position:15% 50%;
     object-position:15% 50%;
  width:100%;
  height:100%;
}
.get-qure h6{
  max-width:180px;
  margin-bottom:0;
  font-family:inherit;
  font-weight:500;
  text-align:right;
}
@media screen and (max-width:767px){
  .get-qure ul{
    grid-template-columns:auto;
    gap:16px;
    margin-top:24px;
  }
}
