.contact{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center
}
.contactcon{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 11rem;
    height: 11rem;
    margin: 10px;
}
.conimg{
    width: 8rem;
    height: 8rem
}
.conlogo{
    width: 7rem;
    height: 7rem
}
.contxt{
    color: black
}

@media (max-width:767px) {
    .contact{
        flex-direction: column;
        flex-wrap: wrap
    }
    .contactcon{
        width: auto;
        height: auto
    }
    .contactcon:nth-of-type(2){
        width: auto
    }
}