body {
    font-family: 'Times New Roman', Times, serif;
    color: #0641AD;
    margin: 0;
    /* background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../images/Water_Softener_image.jpg");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: 100% 100%; */
    background-color: #e0f1ff;
}

.container {
    width: 1200px;
    margin: 80px auto;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    background-color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 30px;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}
.logo {
    width: 350px;
    text-align: right;
}
.contact {
    margin-top: 16px;
    font-weight: 700;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    padding: 20px;
    border: 1px solid;
    border-radius: 20px;
}

.contact a {
    text-decoration: underline;
}

.contact ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 10px 0;
}

.contact ul li + li::before {
    content: " | ";
    padding: 0 20px;
}

.menu {
    border-bottom: 1px solid #0641AD;
    border-top: 1px solid #0641AD;
    margin: 30px 0;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2)
}

.menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    padding: 0;
    margin: 8px 0;
}

.menu ul li {
    padding: 0 35px;
}

.content {
    line-height: 28px;
    color: #0641AD;
    padding-bottom: 20px;
}

.content_left,
.content_right {
    display: flex;
}

.content_right {
    flex-direction: row-reverse;
}

.content ul li {
    padding: 12px;
}

a {
    color: #0641AD;
    text-decoration: none;
}

a.active {
    color: grey;
}
.content-padding {
    padding: 0 20px;
}
.issue-images {
    display: flex;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .container {
        width: 90%;
        margin: 0 auto;
        border: none;
        border-radius: 0%;     
    }

    .header,
    .menu ul,
    .contact ul,
    .content_left,
    .content_right {
        display: block;
    }

    .logo {
        width: 100%;
    }
    .contact {
        padding: 16px 16px 0;
    }
    .contact ul li {
        padding: 5px 0;
    }
    .contact ul li + li::before {
        content: "";
        padding: 0;
    }
    .menu {
        border: 0;
        box-shadow: none;
        margin: 0;
    }
    .menu ul {
        text-align: center;
    }
    .menu ul li {
        border-bottom: 1px solid #0641AD;
        margin: 2px 0;
    }
    .menu ul li.first-list {
        border-top: 1px solid #0641AD;
    }
    a {
        display: block;
    }
    a.active {
        color: white;
    }
    li.active-li {
        background-color: #0641AD;
    }
}