@font-face {
  font-family: Spectral;
  src: url("../fonts/Spectral-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
  font-family: Spectral, sans-serif;
}

body {
  background-color: #0b0f18;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 30px;
}

@media (max-width: 660px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 390px) {
  .container {
    padding: 0 10px;
  }
}
.header {
  width: 100%;
  padding: 30px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container h1 {
  position: relative;
}
.header .container h1 .logo {
  display: inline-block;
  width: 270px;
  height: 80px;
  padding: 5px 10px;
  background-color: #d20c39;
  color: #ffffff;
  transition: all 0.3s ease;
}
.header .container h1 .logo:hover {
  background-color: #ffffff;
  color: #d20c39;
}
.header .container h1 .logo span {
  display: block;
  text-align: center;
  letter-spacing: 1px;
}
.header .container h1 .logo span.logo_about {
  font-size: 14px;
  letter-spacing: 2px;
}
.header .container h1 .logo:hover + .logo_bg {
  background-color: #d20c39;
}
.header .container h1 .logo_bg {
  width: 270px;
  height: 80px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .container .header_menu {
  display: flex;
  justify-content: end;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.header .container .header_menu .phone {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d20c39;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.header .container .header_menu .phone:hover {
  background-color: #ffffff;
  color: #d20c39;
}
.header .container .header_menu .mobile_phone {
  display: inline-block;
  background-color: #d20c39;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  display: none;
}
.header .container .header_menu .mobile_phone:hover {
  background-color: #ffffff;
  color: #d20c39;
}
.header .container .header_menu .instagram {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: #d20c39;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.header .container .header_menu .instagram:hover {
  background-color: #ffffff;
  color: #d20c39;
}

@media (max-width: 660px) {
  .header .container h1 .logo {
    width: 150px;
    height: 50px;
    font-size: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
  }
  .header .container h1 .logo_bg {
    width: 150px;
    height: 50px;
    top: 7px;
    left: 7px;
  }
  .header .container .header_menu .phone {
    display: none;
  }
  .header .container .header_menu .mobile_phone {
    display: flex;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .header .container .header_menu .instagram {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
@media (max-width: 340px) {
  .header .container h1 .logo {
    width: 140px;
    height: 50px;
    font-size: 14px;
  }
  .header .container h1 .logo_bg {
    width: 140px;
    height: 50px;
  }
  .header .container .header_menu {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .header .container .header_menu .phone {
    display: none;
  }
  .header .container .header_menu .mobile_phone {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .header .container .header_menu .instagram {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
@media (max-width: 250px) {
  .header .container h1 .logo {
    width: 100px;
    height: 70px;
  }
  .header .container h1 .logo_bg {
    width: 100px;
    height: 70px;
  }
  .header .container .header_menu {
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
  }
}
.footer {
  padding: 30px 0;
}
.footer .container {
  display: flex;
  justify-content: center;
}
.footer .container p {
  color: #787878;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.footer .container p span a {
  color: #d20c39;
  transition: all 0.3s ease;
}
.footer .container p span a:hover {
  color: #787878;
}

@media (max-width: 660px) {
  .footer {
    padding: 20px 0;
  }
  .footer .container p {
    font-size: 16px;
  }
}
@media (max-width: 340px) {
  .footer {
    padding: 20px 0 10px;
  }
  .footer .container p {
    font-size: 14px;
  }
}
@media (max-width: 250px) {
  .footer .container p {
    text-align: center;
  }
}
.categories {
  width: 100%;
  padding-bottom: 30px;
}
.categories .categories_list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  overflow: auto;
}
.categories .categories_list .categories_list--item .categories_button {
  padding: 10px 20px;
  white-space: nowrap;
  background-color: #D20C39;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.categories .categories_list .categories_list--item .categories_button:hover {
  background-color: #ffffff;
  color: #D20C39;
}

@media (max-width: 1200px) {
  .categories .categories_list {
    justify-content: start;
  }
}
@media (max-width: 660px) {
  .categories .categories_list .categories_list--item .categories_button {
    padding: 10px;
    font-size: 16px;
  }
}
@media (max-width: 340px) {
  .categories .categories_list {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .categories .categories_list .categories_list--item .categories_button {
    padding: 7px;
    font-size: 14px;
  }
}
.products {
  width: 100%;
  padding-bottom: 50px;
}
.products .products_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
}
.products .products_list .products_list--item .product_card {
  width: 510px;
}
.products .products_list .products_list--item .product_card .card_image {
  max-width: 510px;
  height: 510px;
}
.products .products_list .products_list--item .product_card .card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .products_list .products_list--item .product_card .product_details {
  width: 100%;
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products .products_list .products_list--item .product_card .product_details .product_name {
  color: #ffffff;
  font-size: 26px;
  letter-spacing: 2px;
}
.products .products_list .products_list--item .product_card .product_details .product_price {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1px;
}
.products .products_list .products_list--item .product_card .product_about {
  padding: 20px 20px 0;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.5;
}

@media (max-width: 660px) {
  .products {
    padding-bottom: 10px;
  }
  .products .products_list .products_list--item .product_card {
    width: 310px;
  }
  .products .products_list .products_list--item .product_card .card_image {
    width: 100%;
    height: 310px;
  }
  .products .products_list .products_list--item .product_card .product_details {
    padding: 15px 15px 0;
  }
  .products .products_list .products_list--item .product_card .product_details .product_name {
    font-size: 22px;
  }
  .products .products_list .products_list--item .product_card .product_details .product_price {
    font-size: 16px;
    white-space: nowrap;
  }
  .products .products_list .products_list--item .product_card .product_about {
    padding: 15px 15px 0;
  }
}
@media (max-width: 390px) {
  .products .products_list .products_list--item .product_card {
    width: 170px;
  }
  .products .products_list .products_list--item .product_card .card_image {
    height: 170px;
  }
  .products .products_list .products_list--item .product_card .product_details {
    flex-wrap: wrap;
  }
  .products .products_list .products_list--item .product_card .card_image {
    height: auto;
  }
}/*# sourceMappingURL=index.css.map */