/*// Extra small devices (portrait phones, less than 576px)*/
/*// No media query for `xs` since this is the default in Bootstrap*/

@media only screen and (max-width: 767px) {
    .nomargin {
        margin-bottom: 3px;
    }

    .nomargin2 {
        margin: 0 0 8px;
    }

    .about-contentbox {
        text-align: center;
        margin-top: 0px;
    }


    img {
        border: 0;
        max-width: 45%;
        margin-top: 5px;
    }

    hr {
        margin-top: -5px;
        margin-bottom: 3px;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}


/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    ...
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    ...
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    ...
}