@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAw.ttf) format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.button {
  justify-self: end;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #94be26 0%, #62af21 100%);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  transition: all 1s linear;
}
.button:hover {
  background-image: linear-gradient(to left, #94be26 0%, #62af21 100%);
}
.button__link {
  text-decoration: none;
  color: #ffffff;
}
.header__bar {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-template-rows: auto;
}
@media (min-width: 575px) {
  .header__bar {
    grid-template-columns: -webkit-max-content 1fr -webkit-max-content;
    grid-template-columns: max-content 1fr max-content;
  }
}
.header__logo {
  margin: 15px 0 15px 15px;
}
.header__logo-img {
  width: 160px;
  height: 55px;
}
.header__cart {
  height: 55px;
  margin: 15px 15px 15px 0;
  display: none;
  position: relative;
}
@media (min-width: 575px) {
  .header__cart {
    display: flex;
  }
}
.header__cart-quantity {
  min-width: 25px;
  padding: 5px;
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  right: -5px;
  top: -5px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #62af21;
  font-size: 12px;
  color: #ffffff;
}
.header__cart-link {
  padding: 15px 30px;
}
.header__menu {
  display: grid;
  grid-column-start: 1;
  grid-column-end: -1;
}
@media (min-width: 1200px) {
  .header__menu {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
  }
}
.header__button-menu {
  width: 55px;
  height: 55px;
  margin: 15px 15px 15px 0;
  justify-self: end;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(5deg, #94be26 0%, #62af21 100%);
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .header__button-menu {
    display: none;
  }
}
.main-menu--close {
  display: none;
}
@media (min-width: 1200px) {
  .main-menu--close {
    display: block;
  }
}
.main-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1200px) {
  .main-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main-menu__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-menu__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .main-menu__item:first-child {
    border: none;
  }
}
@media (min-width: 1200px) {
  .main-menu__item {
    border: none;
  }
}
.main-menu__link {
  padding: 10px 60px 10px 25px;
  display: block;
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  color: #222222;
}
.main-menu__link:hover {
  color: #66b021;
}
@media (min-width: 1200px) {
  .main-menu__link {
    padding: 35px 21px;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
  }
}
.cart {
  width: 100%;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
@media (min-width: 1200px) {
  .cart {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.cart__table {
  overflow-x: auto;
}
.cart__list {
  list-style: none;
  margin: 0 auto;
  border-top: 3px solid #62af21;
  border-bottom: 3px solid #62af21;
  background-color: #ffffff;
}
.cart__item:nth-child(even) {
  background-color: #f8f9fa;
}
.cart__item-image {
  width: 50px;
  height: auto;
}
.cart__item-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.cart__delete {
  fill: #62af21;
}
.cart__delete:hover {
  fill: #FF2B2B;
}
.cart__close {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  margin-right: 5px;
  align-self: flex-end;
  background-color: #62af21;
  border-radius: 50%;
}
.cart__close:hover {
  background-color: #FF2B2B;
}
.cart__total-cost {
  padding: 10px;
  padding-right: 20px;
  display: flex;
  justify-content: end;
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 18px;
  font-weight: 400;
  background-color: #ffffff;
}
.cart__total-cost span {
  font-weight: 500;
}
.cart__open-form {
  padding: 15px 0;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}
.cart__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 20px;
  display: block;
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #62af21;
  border: none;
  border-radius: 5px;
}
.cart__form {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 16px;
  color: #222222;
}
.cart__form--close {
  display: none;
}
.cart__form input {
  margin-bottom: 10px;
  padding: 10px;
  display: block;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  background-color: #ffffff;
  text-align: left;
}
.carusel {
  min-width: 100%;
  min-height: 500px;
  padding: 150px 0;
  position: relative;
  background-image: linear-gradient(5deg, rgba(148, 190, 38, 0.9) 0%, rgba(98, 175, 33, 0.9) 100%), url('../img/569098.jpg');
}
.carusel::before {
  content: "";
  position: absolute;
  background-image: url("../img/header_shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.carusel::after {
  content: "";
  position: absolute;
  background-image: url("../img/banner_bg_shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.carusel__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1200px) {
  .carusel__list {
    width: 1200px;
    margin: 0 auto;
  }
}
.carusel__item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.carusel__item--close {
  display: none;
}
@media (min-width: 990px) {
  .carusel__item {
    flex-direction: row;
  }
}
.carusel__content {
  max-width: 500px;
}
.carusel__content-title {
  margin-bottom: 20px;
  font-family: "Oswald", "Verdana", sans-serif;
  font-size: 55px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  word-spacing: 0px;
  color: #ffffff;
}
.carusel__content-description {
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  word-spacing: 0px;
  color: #ffffff;
}
.carusel__image-src {
  width: 100%;
  height: auto;
}
.product__list {
  list-style: none;
}
@media (min-width: 1200px) {
  .product__list {
    width: 1200px;
    margin: 0 auto;
  }
}
.product__item {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 990px) {
  .product__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 990px) {
  .product__item {
    flex-direction: row;
  }
}
.product__slider-list {
  max-width: 540px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.product__slider-item {
  max-width: 125px;
  background-color: #f8f9fa;
  border-radius: 5px;
}
.product__slider-item:first-child {
  max-width: 540px;
  grid-column-start: 1;
  grid-column-end: 5;
}
.product__slider-image {
  max-width: 100%;
  height: auto;
  display: block;
}
.product__info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 990px) {
  .product__info {
    padding: 0 20px;
  }
}
@media (min-width: 990px) {
  .product__info {
    width: 50%;
  }
}
.product__title {
  font-family: "Oswald", "Verdana", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  text-transform: uppercase;
  word-spacing: 0;
  color: #222222;
}
.product__price {
  display: block;
  font-family: "Oswald", "Verdana", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 42px;
  text-transform: uppercase;
  word-spacing: 0;
  color: #222222;
}
.product__description {
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #777777;
}
.product__separator {
  height: 3px;
  background-color: #62af21;
}
.product__shop-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product__quantity {
  display: flex;
}
.product__button {
  max-width: 75px;
  padding: 10px;
  display: block;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  background-color: #ffffff;
  text-align: center;
}
.product__add-increment {
  border-right: none;
}
.product__add-quantity:focus {
  outline: none;
}
.product__add-decriment {
  border-left: none;
}
.product__add-to-cart {
  padding: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background-color: #62af21;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
}
.page-html {
  height: 100%;
}
.page-body {
  height: 100%;
  font-family: "Roboto", "Verdana", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #777777;
  font-style: normal;
}
@media (min-width: 1200px) {
  .wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style.css.map */
