.childContainer {
    display            : flex;
    flex-direction     : column;
    justify-content    : center;
    align-items        : center;
    width              : 100%;
    height             : 100%;
    /* background-color: red; */
}

.childContainer a {
    display      : block;
    width        : 100px !important;
    height       : 100px !important;
    border       : 6px solid #a11414;
    border-radius: 50%;
    box-shadow   : 1px 0px 5px grey;
    margin-bottom: 8px;
    margin-top   : 8px;
}



.childContainer img {
    width     : 100% !important;
    height    : 100% !important;
    object-fit: contain;

}

h1 {
    box-shadow   : 1px 0px 5px grey;
    padding      : 5px;
    width        : 100%;
    margin-top:6px;
    margin-bottom: 2px;
}

h2 {
    box-shadow    : 1px 0px 5px grey;
    padding       : 15px;
    width         : 100%;
    margin-top    : 1px;
    /* text-align : left; */
    text-transform: none;
}

.childContainer p {
    /* background-color: red; */
    padding        : 20px 35px 20px 35px;
    text-align     : justify;
    text-align-last: center;
    font-size      : 20px;
    line-height    : 1.4;
    text-transform : none;
    font-family    : serif;
    box-shadow     : 1px 0px 5px grey;
}


#add{
    font-size: 16px;
}

label{
    font-size: 17px;
}

/* -----------------------------------responsive----------------------------------- */

@media screen and (max-width:780px) {
    .childContainer .res {
        display       : flex;
        flex-direction: column;
    }

    .dots {
        display: none;
    }

    #add,
    #mob,
    #firmname,
    #emails {
        font-size: 20px;
        padding:5px;
    }

    .childContainer p {
        text-align: center;
        padding: 10px;
    }


}