/*Main Styles*/
body {
    background: rgba(241,234,188,1.00);
    font-family: 'Hind', sans-serif;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    overflow-x: hidden;
}
html, body {
    width: 100%;
    height: 100%;
}
/*Menu Styles*/
* {
    margin: 0;
    padding: 0;
}
/*hiding label and checkbox*/
input[type=checkbox], .show-menu {
    display: none;
}
/*giving background image*/
/*styling our wrapper*/
.wrapper {
    max-width: 960px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Hind', sans-serif;
}
/*styling h1 in wrapper*/
.wrapper h1 {
    padding: 20px;
    text-align: center;
}
/*styling navigation*/
.navigation {
    display: flex;
    list-style-type: none;
}
/*styling list items->li in navigation*/
.navigation li {
    background: #7E0000;
    flex: 1;
    text-align: center;
    transition: all .2s ease;
}
.navigation li:not(:first-child) {
    border-left: 2px solid #ecf0f1;
}
/*styling hover*/
.navigation li:hover {
    background: #333333;
    flex: 1.1;
}
/*styling our anchor tag*/
.navigation li a {
    display: block;
    padding: 20px 0;
    color: inherit;
    text-decoration: none;
}

/*giving style for mobile*/

@media screen and (max-width:600px) {
/*styling our show menu button*/
.show-menu {
    background: #342a2a;
    display: flex;
    cursor: pointer;
    padding: 20px 0;
    justify-content: center;
}
/*hiding our navigation*/
.navigation {
    display: none;
}
input[type=checkbox]:checked ~ .navigation {
    display: block;
}
.navigation li:not(:first-child) {
    border: 0;
}
.navigation li:not(:last-child) {
    margin: 2px 0;
}
}
/*Menu Styles End*/

/*Main Section Style Starts*/
.b-cart {
    width: 150px;
    height: 50px;
    background: #7E0000;
    color: #fff;
    text-align: center;
    font-size: 21px;
    padding-top: 15px;
    padding-bottom: 0px;
    border-bottom: 3px solid #7E0000;
    border-radius: 10px;
    margin-top: 10px;
    margin-left: 13px;
}
.b-cart:hover {
    opacity: 0.8;
}
.b-items {
    margin: 70px 0 0 0;
    padding: 0;
}
.b-items__item {
    display: inline-block;
    border: 1px solid #eee;
    width: 200px;
    position: relative;
    border-radius: 4px;
    margin: 0 12px 21px 12px;
}
.b-items__item2 {
    display: inline-block;
    border: 1px solid #eee;
    width: 200px;
    position: relative;
    border-radius: 4px;
    margin: 0 2px 21px 22px;
    object-position: center;
    padding-bottom: 5%;
}
.b-items__item__img {
    border-radius: 4px 4px 0 0;
}
a {
    display: block;
    text-decoration: none;
    text-align: center;
}
.a:hover {
    opacity: 0.8;
}
.b-items__item__title {
    display: block;
    font-size: 18px;
    margin-top: 9px;
    font-family: 'Hind', sans-serif;
    ;
    color: #95A5A6;
}
.b-items__item__add-to-cart {
    font-family: 'Hind', sans-serif;
    display: block;
    background: #16A085;
    color: #fff;
    margin-top: 9px;
    padding: 12px 0;
    border-radius: 0 0 4px 4px;
    border-bottom: 2px solid #0a9479;
}
.b-flying-img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 5;
    animation: fly 0.8s 1;
    backface-visibility: hidden;
}
 @keyframes fly {
 0% {
 transform: rotate(0deg); /* Для Firefox */
}
 100% {
 transform: rotate(360deg); /* Для Firefox */
 
}
}