* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  /* background-color: rgb(57, 158, 153); */
  margin-bottom: 15px;
  /* height: 150px; */
}

.header-top {
  display: flex;
  justify-content: space-between;
  max-width: 95%;
  margin: 0 auto;
}

.header-top-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(56, 146, 146);
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.contacts a {
  display: block;
  color: rgb(29, 86, 109);
  font-weight: 500;
}

.header-menu {
  /* background-color: rgb(57, 158, 153); */
  background-color: rgb(71, 158, 173);
}

.header-menu a {
  color: antiquewhite;
  padding: 10px;
}

.header-menu a:hover {
  /* background-color: rgb(114, 189, 179); */
  /*color: rgb(15, 73, 75); */
  color: rgb(19, 53, 116);
}

.header-menu-list {
  display: flex;
  justify-content: space-evenly;
}

.items-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}

.item {
  box-shadow: 5px 5px 10px rgb(100, 100, 100);
  /* border: 1px solid rgb(11, 88, 94); */
  border-radius: 5px;
  margin: 15px;
  width: 300px;
  height: 320px;
  transition: 200ms;
}

.item:hover {
  transition: 200ms;
  scale: 1.1;
}

.item-image {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.item-name {
  color: rgb(36, 63, 63);
  font-weight: 500;
  padding: 10px;
}

.item-price {
  color:rgb(15, 73, 75);
  padding: 10px;
}

.footer {
  /*background-color: rgb(29, 85, 79); */
  background-color: rgb(40, 120, 134);
  /* height: 200px; */
  margin-top: 15px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

.some-class {
  width: 300px;
  background-color: aqua;
}

.informer {
  display: block;
}

.copyright {
  text-align: center;
  padding-bottom: 5px;
  color: rgb(149, 190, 184);
}

                      /*Здесь начинаются стили для страниц описания конкретного товара */

.slider {
  max-width: 600px;
  margin: 0 auto;
}

.slick-prev::before, 
.slick-next::before {
  color: rgb(56, 109, 109);
}

.slider-img {
  width: 100%;
}

.item-description {
  max-width: 600px;
  margin: 0 auto;
}

.item-title {
  padding: 20px 0;
  color: rgb(36, 63, 63)
}

.item-text {
  padding-bottom: 200px;
  color: rgb(36, 63, 63)
}