* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ccc;
}

.flextitleCon {
    display: flexbox;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 0;
    height: auto;
    flex-direction: column;
    background-color: rgba(5, 28, 104, 0.863);
    border-top: 1px solid darkgoldenrod;
}

.flextitleCon h2 {
    font-size: 2.3rem;
    font-family: 'Roboto';
    font-weight: 400;
    text-align: left;
    color: #ddd;
    font-style: normal;
    text-shadow: 0 1px 1px #0070cc;
}

.flextitleCon-h2-img {
    max-width: 2rem;
    height: auto;
    border: 0;
    border-radius: 50%;
    display:  none !important;
}

.contactUs {
    display: none !important;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.contactUs a {
    font-size: .9em;
    font-family: inherit;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-style: oblique;
}

.aboutContainer {
    display: flexbox;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 30px auto;
    margin: 0;
    margin-bottom: 2em;
    margin-top: 5em;
}


.about-left,
.about-right {
    display: inline-flex;
    width: 47.8%;
    height: auto;
    flex-direction: column;
    align-items: center;
    margin: 10px 13px;
    box-shadow: 0px 0px 0px #0070cc;
    margin-bottom: 10px;
}

.about-left h2 {
    font-size: 1em;
    font-family: inherit;
    font-weight: bold;
    text-align: left;
    color: #0077;
    margin: 10px;
    margin-bottom: 1em;
}

.about-left-h5,
.about-right-h5,
.about-left-h5-rgt {
    font-size: .9em;
    font-weight: 400;
    font-family: inherit;
    color: #000;
    line-height: 2em;
    margin: 10px;
    border: 0;
    border-radius: .5em;
}

.about-left-h5-rgt {
    text-align: left;
    padding: 2em;
    background-color: transparent;
    border-right: .3em solid rgba(5, 28, 104, 0.863);
    color: #333;
} 

.about-left-h5 {
    text-align: left;
    padding: 2em;
    background-color: transparent;
    border-left: .3em solid rgba(5, 28, 104, 0.863);
    color: #333;
}

.about-right-h5 {
    text-align: right;
    padding: 2em;
    background-color: transparent;
    color: #333;
    border-right: .3em solid darkgoldenrod;
}


@media screen and (max-width: 800px) {
.flextitleCon {
    flex-direction: column;
}

.flextitleCon h2 {
    font-size: 30px;
}

.about-left,
.about-right  {
    flex-direction: column;
    width: 100%;
    display: block;
    margin-left: 0;
}
}