body {
    font-family: sans-serif;
    background-color: #9AECEF;
}
* {
    margin: 0;
    box-sizing: border-box;
}
#wrapper {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
    grid-template-rows: auto;
}
header {
    display: flex;
    justify-content: space-between;
    grid-column: 1/-1;
    grid-row: 1/2;
    background: rgb(168 133 148);
}
nav {
    width: 100%;
    height: 50px;
    grid-row: 1/2;
    grid-column: 1/-1;
}
#cart {
    width: 100px;
}
#cart img{
    width: 100%;
}
#featured_image {
    grid-row: 2/3;
    grid-column: 2/8;
}
#featured_image img {
    width: 100%;
    height: 468px;
}
nav ul {
    padding: 0 50px 0 50px;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-around;
    grid-column: 1/-1;
}
nav ul li {
    color: #9AECEF;
    line-height: 100px;
}
nav ul li a {
    color:#9AECEF;
    text-decoration: none;
    font-size: 25px;
}
nav ul li a:hover {
    color:white;
}
main{
    grid-row: 3/4;
    grid-column: 2/8;   
    padding-top: 30px;
    padding-bottom: 30px;
}
.product_conteiner{
    margin-top: 40px;
    display: flex;
    justify-content:center;
}
.best_item_p{
    padding: 40px 100px;
}
.about-main{
    display: block;
}
#our_history{
    display: flex;
    align-items: center;
}
h1{
    text-align: center;
}
#products {
    display: grid;
    grid-template-columns: 206px 206px;
    grid-template-rows: 206px 206px;
    grid-gap: 30px;
}
#our_history p{
    margin-left: 30px;
}
footer {
    grid-row: 4/5;
    grid-column: 1/-1;
    font-family: sans-serif;
    background-color: blanchedalmond;
}
footer li{
    list-style: none;
    text-align: center;
}
footer ul{
    padding: 10px 0px 10px 0px;
}
@media screen and (max-width: 992px){
    #wrapper{
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 768px)) minmax(0px, 1fr);
    }
}
@media screen and (max-width: 768px){ 
    #products{
        display: flex;
        flex-direction: column;
    }
}
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

form { max-width:420px; margin:50px auto; }

.feedback-input {
  color:white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #fe7e01;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #fe7e01; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background:#fe7e01;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#fe7e01; }
@media only screen and (max-width: 480px){
    nav ul li a {
        font-size: 20px;}
    nav{
        height: auto;
    }
    nav ul {
        flex-direction: column;
    }   
    nav ul li {
        line-height: 40px;
    } 
    .best_item_p{
        padding: 40px 20px;
    }
}