* {
    box-sizing: border-box;
}
html {
    font-size: 14px;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a;
}
img {
    max-width: 100%;
}
ul {
    margin: 0;
    padding: 0 1rem;
}

a, a:visited, .link {
    text-decoration: none;	
	color: #1464a9;
	cursor: pointer;
}
a:hover, 
.link:hover {
	text-decoration: underline;
}
pre, code {
    font-size: .85rem;
}

h1, h2, h3, h4 {
    font-weight: 300;
}

.header h1 {
    text-align: center;
	color: #246aa7;
    font-size: 4.5em;
}

.body {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7em;
}
.menu {
    display: block;
    margin: 0 auto 70px auto;
    text-align: center;
    font-size: .9em;
}
.menu a {
    margin: 0 15px;
    text-transform: uppercase;
}

.product {
    margin: 80px 20px;
    display: flex;
}
.product h2 {
    font-size: 2.2em;
    color: #0b5596;
    margin-top: 5px;
}
.product .description {
    min-width: 300px;
    margin-right: 40px;
    color: #4a4a4a;
}

.product ul {
    margin: 8px 0;
    line-height: 1.8em;
}
.product .wrap {
    width: 660px;
    overflow: hidden;
}
.shadow {
    box-shadow: 3px 3px 5px 0px #afacac;
}

.footer {
    text-align: center;
    margin: 0 0 100px 0;
}
.footer a {
    margin-left: 20px;
}


@media  (max-width: 1050px) {
    .product {
        text-align: center;
        display: block;
    }
    .product .wrap {
        width: unset;
    }
    .product img {
        margin-top: 30px;
        max-width: 100%;
    }
    ul {
        list-style-type: none;
    }
}
