html, body {
    margin: 0 auto;
    padding: 0;
    height: auto;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body {
    background: rgba(204, 234, 233, 0.5);
    position: relative;
    font-family: 'Helvetica, Arial', sans-serif;
    overflow-x: hidden;
}

.over {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
}
.circle {
    background: #cceae9;
    border-radius: 50%;
    width: 120%;
    height: 160%;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: -50%;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1600px;
    margin: auto;
    padding: 0 1rem;
}

header {
    padding: 1rem;
    max-width: 1600px;
    margin: auto;
}
header .container {
    border-radius: 10px;
    background: #fff;
    text-align: center;
    padding: 1rem 1rem 2rem;
}

form {
    display: flex;
    flex-flow: row wrap;
    max-width: 850px;
}

input {
    padding: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    border: 1px solid transparent;
}

input[type=search]:focus {
    border: 1px solid #f7931e;
}

input[type=submit] {
    background: #f7931e;
    color: #ffffff;
    margin-left: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: background .4s;
    width: 185px;
}

input[type=submit]:hover, input[type=submit]:focus {
    background: #ee7111;
}

.search {
    width: calc(100% - 195px);
    border: 1px solid #cceae9;
}

form {
    margin: auto;
}

h1, .logo {
    font-weight: 500;
    font-size: 1.8rem;
    margin: 1rem 0 2rem;
    display: block;
    color: #f7931e;
}

h1 img, .logo img {
    width: 30px;
    margin: 0 .3rem -.25rem 0;
    vertical-align: baseline;
}

h2 {
    color: #f7931e;
    font-size: 1.4rem;
    line-height: 1.9rem;
    font-weight: 400;
}

h3 {
    color: #666666;
    font-size: 1.15rem;
    line-height: 1.9rem;
    font-weight: 500;
}

p b {
    color: #7d7d7d;
}

.main {
    padding: 1rem 0;
    display: flex;
    flex-flow: row wrap;
    width: auto;
    margin: 0 -.5rem;
}

.product {
    background: #fff;
    padding: 1rem 1.5rem 0;
    width: calc(16.66% - 1vw);
    display: block;
    border-radius: 10px;
    margin: .5vw;
    color: inherit;
    transition: all .3s;
}

.product:hover {
    background: #f6f6f6;
}

.product:hover .bold {
    color: #f7931e;
}

.product-img {
    max-width: 110px;
    height: 110px;
    overflow: hidden;
    margin: auto;
    position: relative;
}

.product-img img {
    width: 100%;
    position: absolute;
    margin: auto;
    top: -50%;
    bottom: -50%;
    left: 0;
    right: 0;
    height: auto;
}

.bold {
    font-size: 1rem;
    font-weight: 700;
    height: 45px;
    overflow: hidden;
}

.price {
    font-size: 1.7rem;
    font-weight: 600;
    margin: .7rem 0 0;
    color: #f7931e;
}

.info {
    margin-top: .3rem;
    font-size: .93rem;
    color: #666;
}

.shop {
    font-size: .93rem;
    color: #666;
    text-align: center;
}

.shop img {
    height: 20px;
    max-width: 120px;
    vertical-align: middle;
}

.buy {
    background: #f7931e;
    border-radius: 30px;
    width: calc(100% + 1rem);
    display: block;
    margin: 0 -.5rem;
    padding: .7rem;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: all .4s;
}

.buy:hover {
    background: #ee7111;
}

.buy:after {
    content: '';
    background: rgba(255, 255, 255, 0.2) url("/img/arrow-right.svg") 55% 50% no-repeat;
    background-size: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: .4rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

footer {
    text-align: center;
    padding: 1rem;
}

footer p, footer a {
    color: #999;
    transition: all .3s;
}

footer a:hover {
    color: #f7931e;
}

.data {
    background: #fff;
    padding: 1rem 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

header .data {
    padding: 1rem 1rem .1rem;
    margin: 0;
}

.data-content {
    max-width: 900px;
    margin: auto;
}

.data-content a {
    color: #f7931e;
}

.data-content button {
    background:#f7931e;
    border-radius: 7px;
    padding: .5rem 1rem;
    font-family: inherit;
    color: #fff;
    font-size: .92rem;
    outline: none;
    border: none;
    cursor: pointer;
    transition: background .4s;
}
.data-content button:hover {
    background: #ee7111;
}

@media (max-width: 1150px) {
    .product {
        width: calc(20% - 1vw);
        padding: 1rem;

    }
}

@media (max-width: 820px) {
    .product {
        width: calc(25% - 1vw);
    }
}

@media (max-width: 660px) {
    .product {
        width: calc(33.33% - .5rem);
        margin: .25rem;
    }

    .buy {
        margin: 0;
        width: 100%;
    }

    .search {
        width: calc(100% - 150px);
    }

    input[type=submit] {
        width: 140px;
    }
}

@media (max-width: 470px) {
    .product {
        width: calc(50% - .5rem);
        margin: .25rem;
        padding: .7rem;
    }

    .search {
        width: 100%;
    }

    input[type=submit] {
        width: 100%;
        margin: .5rem 0 0;
    }

    .price {
        font-size: 1.5rem;
    }
}