@media (max-width: 600px) {
.d-flex{
display:flex;
flex-direction:column;
align-content:flex-start;
}
.grid-containter{
display:grid;
grid-template-areas:
'first'
'second'
'third'
'fourth'
'fifth'
'sixth';
padding:0;
margin:0;
grid-gap:.5em 0em;
width:100%;
justify-items: center;
text-align:center;
font-size:1.5em;
}
img{
margin-left:auto;
margin-right:auto;
width:100% !important;
}
.customTitle{
background-color: darkorange;
text-align:center;
text-transform: none;
color:white;
padding:0;
margin-left:auto;
margin-right:auto;
width:100%;
height:5em;
font-size:1em;
line-height:1.2em;
}
}