.mini-contact-box{
    display:grid;
    grid-gap:5%;
    grid-template-columns: repeat(2,1fr);
}
.mini-contact-box .item{
    padding:10px;
    -webkit-box-shadow: 4px 4px 10px 0px rgb(229 229 229);
    -moz-box-shadow: 4px 4px 10px 0px rgb(229 229 229);
    box-shadow: 4px 4px 10px 0px rgb(229 229 229);
}
.mini-contact-box .header{
    display:grid;
    grid-gap:2%;
    grid-template-columns: 50px max-content;
    align-items: center;
}
.mini-contact-box .header .image{
    max-width:50px;
    height:auto;
}
.mini-contact-box .header .title{
    font-weight:bold;
    color:#1a57a1;
}
.mini-contact-box .description a{
    color: #24395b;
    font-weight:bold;
}
.mini-contact-box .description a:hover{
    color: #e94713;
}
@media screen and (max-width: 560px){
    .mini-contact-box{
        grid-template-columns: repeat(1,1fr);
    }
}