#havequestion{
  padding: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  position: relative;
}
#havequestion::after {
content: '';
position: absolute;
right: 0;
top: 0;
bottom: 0;
background-image: url('/static/theme/img/hq.webp');
background-position: center right;
background-repeat: no-repeat;
background-size: contain;
z-index: 0;
height: 100%;
width: 50%;
}
#havequestion .text{
  width: 40%;
  position: relative;
  z-index: 1;
}
#havequestion .image {
width: 50%;
position: relative;
  z-index: 1;
background-color: rgba(255, 255, 255, 0.8);
padding: 1rem 1.75rem;
border-radius: 1.143rem;
}
#havequestion .image p{
  font-size: 1.55rem;
  line-height: 2.3rem;
  margin-bottom: 0;
}
@media only screen and (max-width:900px){
#havequestion .image, #havequestion::after{
  display: none;
}
#havequestion .text{
  width: 100%;
}
}