.about-us {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  height: 440px;
  width: 350px;
  margin: 12px;
  display: flex;
  flex-direction: column;
  background-color: #efefef;
  transition: 1s;
  cursor: pointer;
  user-select: none;
  .image {
    width: 350px;
    height: 350px;
  }
  .price {
    display: flex;
    justify-content: flex-start;
    font-size: 24px;
    color: rgb(59, 59, 59);
    font-weight: 400;
    padding: 16px;
  }

  .name {
    display: flex;
    justify-content: flex-start;
    font-size: 18px;
    color: rgb(59, 59, 59);
    padding: 0px 16px;
    text-align: start;
  }
}

.card:hover {
  transform: scale(1.01);
  box-shadow: 0px 1px 5px black;
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  .button-to-cart {
    background-color: black;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    margin: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80% !important;
  }
}
.catalog {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.category {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  .category__title{
    width: 100%;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 12px 0;
  }
  .category__content{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  
  }
}


.main-page {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 140%;
  text-align: left;
}
.product-card {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 140%;

  .left-block {
    width: 40%;
    padding: auto;
    img {
      width: 100%;
    }
  }
  .right-block {
    width: 50%;
    text-align: start;
    padding-left: 24px;
  }
  .cart-button {
    margin-top: 24px;
    width: 200px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #efefef;
    flex-wrap: wrap;
    cursor: pointer;
    user-select: none;

  }
  .cart-button:hover {
    background-color: rgb(204, 204, 204);
  }
}
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  .cart {
    position: absolute;
    right: 0;
    .cart__link {
      color: black;
      text-decoration: none;
      font-size: 20px;
      display: flex;
      flex-direction: row;
      align-items: center;
      img{
        height: 40px;
        width: 40px;
        margin-top: 10px;
      }
    }
  }
  .logo {
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: white;
    user-select: none;
    img {
      height: 64px;
    }
  }
  .navigation {
    display: flex;
    flex-direction: row;
    padding: 6px 64px;
    font-size: 18px;
    background-color: white;
    width: 100%;
    a {
      color: black;
      text-decoration: none;
    }
    .separator {
      margin: 0px 6px;
    }
  }
  .submenu {
    display: flex;
    flex-direction: row;
  }
  .menu {
    height: 70px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #000000;
    .left-buttons {
      display: flex;
      flex-direction: row;
      .header-button {
        border-right: 1px solid rgb(146, 146, 146);
      }
      .header-button:last-child {
        border: none;
      }
    }
    .right-buttons {
      display: flex;
      flex-direction: row;
      .header-button {
        border-left: 1px solid rgb(146, 146, 146);
      }
      .header-button:first-child {
        border: none;
      }
    }
  }
}
.header-button {
  height: 100%;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 24px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.header-button:hover {
  background-color: rgb(66, 66, 66);
}
.header-dropdown-button-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1570px) {
  .header-dropdown-button-container {
    width: 640px;
  }
}
@media (max-width: 1570px) {
  .header-dropdown-button-container {
    width: auto;
  }
}

.header-dropdown-button {
  height: 64px;
  min-height: 64px;
  min-width: 80px;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 24px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.header-dropdown-button:hover {
  background-color:rgb(66, 66, 66);
}

.dropdown-menu {
  background-color: #000000;
  z-index: 1000;
}

.dropdown-menu-item {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 600px;
  padding: 8px 20px;
  font-size: 24px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
}

.dropdown-menu-item:hover {
  background-color: rgb(66, 66, 66);
}
.main-container {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.button-container {
  .style-button {
    width: 6.5em;
    height: 2.3em;
    margin: 0.5em;
    background: black;
    color: white;
    border: none;
    border-radius: 0.625em;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
   }
   
   button:hover {
    color: black;
   }
   
   button:after {
    content: "";
    background: white;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
   }
   
   button:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
   }
}

.Products-cart {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  .price {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .products-list {
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    .clear-cart-button {
      width: 200px;
      height: 60px;
      background-color: #efefef;
      font-weight: 600;
      font-size: 20px;
      margin: 0 8px;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 24px;
    }
    .clear-cart-button:hover {
      background-color: rgb(202, 202, 202)
    }
    .product-list_card{
      width: 100%;
      height: 200px;
      display: flex;
      flex-direction: row;
      background-color: #efefef;
      .product-list_card_image {
        height: 200px;
      }
      .product-list_card_name {
        font-size: 18px;
        font-weight: 400;
        padding: 16px;
      }
      .product-list_card_price {
        font-size: 18px;
        font-weight: 400;
        padding: 16px;
      }
      .product-list_card_count {
        font-size: 18px;
        font-weight: 400;
        padding: 16px;
        .product-list_card_count_controll {
          display: flex;
          flex-direction: row;
          .controll-button {
            width: 40px;
            height: 30px;
            background-color: white;
            font-weight: 600;
            font-size: 20px;
            margin: 0 8px;
            cursor: pointer;
            justify-content: center;
            align-items: center;
          }
          .controll-button:hover {
            background-color: rgb(223, 223, 223);
          }
        }
      }
    }
  }
}
.contacts {
  height: 100%;
  width: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: left;
   font-size: 140%;
}
@font-face {
  font-family: 'Linotype';
  src: url(./340ca95172c964c51976.ttf);
}

body {
  font-family: "Linotype" !important;
}

.app {
  text-align: center;
  @media (min-width: 1570px) {
    .app-container {
      margin: 0 180px;
    }
  }
  @media (max-width: 1570px) {
    .app-container {
      margin: 0 0;
    }
    .left-image { 
      visibility: hidden;
     }
    .right-image { 
      visibility: hidden;
    }
  }
  .left-image {
    position: absolute;
    left: 0;
    top: 975px;
    opacity: 0.5;
    z-index: -50;
  }
  .right-image {
    position: absolute;
    right: 0;
    top: 170px;
    opacity: 0.5;
    z-index: -50;
  }
}

.about-us {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
   font-size: 140%;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


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