body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
}

div {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}
strong{
    font-weight: 500;
}

img {
    max-width: 100%;
}

.clear {
    clear: both;
}

.content{
    width: 90%;
    max-width: 1300px;
    margin: 0px auto;
}
.gray{
    background-color: #f7f7f7;
}
.product-row{
    padding: 60px 0px 60px 0px;
    position: relative;
}
.product-row::after{
    content: " ";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 77px;
    height: 91px;
    background-size: 77px;
    background-repeat: no-repeat;
}
.product{
    float: left;
    width: 45%;
    margin-right: 5%;
    -webkit-box-shadow: 0px 0px 30px -8px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 30px -8px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 30px -8px rgba(0,0,0,0.3);
    background-color: #FFFFFF;
    position: relative;
    padding: 0px;
}
.product > img{
    display: block;
}
.product::after{
    content: " ";
    width: 77px;
    height: 77px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-size: 65px;
    background-repeat: no-repeat;
    z-index: 999;
}
.desc{
    float: left;
    width: 50%;
    font-size: 13px;
    font-weight: 300;
    color: #656565;
    line-height: 1.4em;
}
h1{
    font-size: 20px;
    color: #375c90;
    margin: 0px 0px 25px 0px;
    font-weight: 600;
    line-height: 1.5em;
}
ul{
    margin-top: 0px;
    list-style-type: none;
    padding-left: 0px;
}
ul li{
    position: relative;
    padding-left: 40px;
    margin: 8px 0px;
}
ul li::after{
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #375c90;
}






/* MOBILE LAYOUT */
@media only screen and (max-width: 641px) {

    .product{
        width: 100%;
        margin-right: 0px;
        float: none;
        text-align: center;
    }
    h1{
        font-size: 20px;
    }
    .product-row::after{
        width: 50px;
        height: 60px;
        background-size: 50px;
    }

    .desc{
        width: 100%;
        float: none;
        margin-top: 30px;
    }


}


