@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;

0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  height: 10%;
  width: 100%;
}

.header__logo {
  position: absolute;
  top: 0;
  left: 10%;
  width: 250px;
  height: 350px;
  max-height: 30%;
  background: #282828;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
}

.header__logo h1 {
  color: #fff;
  text-align: center;
  margin-top: 5px;
  font-size: 1.5625rem;
  font-weight: 600;
}

.header__logo img {
  width: 300px;
  margin: 20px 0px 0px -30px;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
}

.menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu__icon {
  display: block;
  position: relative;
  width: 1.5625rem;
  height: 1rem;
  z-index: 5;
}

.menu__icon span,
.menu__icon::before,
.menu__icon::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  right: 0;
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: black;
}

.menu__icon::before {
  top: 0;
}

.menu__icon::after {
  bottom: 0;
}

.menu__icon span {
  top: calc(50% - 0.0625rem);
}

.menu-open .menu__icon span {
  width: 0;
}

.menu-open .menu__icon::before {
  top: calc(50% - 0.0625rem);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-open .menu__icon::after {
  bottom: calc(50% - 0.0625rem);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.menu__item {
  position: relative;
  padding-top: 3px;
  padding-bottom: 3px;
}

.menu__item a {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.menu__item a::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #dc1313;
  border-radius: 50%;
  bottom: -5px;
  left: 45%;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.menu__item a:hover::before {
  opacity: 1;
}

.menu__item a:hover {
  color: #dc1313;
}

.menu__cart {
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.menu__shop {
  width: 15px;
}

.menu__user {
  position: relative;
  width: 20px;
}

.menu__user::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dc1313;
  top: 0;
  right: 0;
  z-index: 999;
}

body {
  width: 100%;
  height: 100vh;
  background: #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0 !important;
}

.wrapper {
  position: relative;
  width: 58%;
  height: 75%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 50px -1px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 50px -1px rgba(0, 0, 0, 0.5);
  padding: 0px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
}

main {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.left__menu {
  width: 20px;
  height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.left__menu a {
  margin: 30px 0px;
  padding: 0px 5px;
  font-size: 10px;
  font-weight: 600;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.left__menu a:hover {
  color: #dc1313;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.head {
  width: 95%;
  height: 90%;
}

.head__content {
  position: relative;
  margin-top: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
}

.head__content h1 {
  font-size: 40px;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.head__content > p {
  font-size: 10px;
  font-weight: 600;
  width: 290px;
  margin-bottom: 10px;
}

.head__dis {
  width: 70px;
  position: relative;
  top: -5px;
  left: -5px;
}

.head__steam {
  width: 60px;
  height: 80px;
  position: absolute;
  top: -35px;
  left: -5px;
}

.head__rate-cart {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2px 10px;
  color: #fff;
}

.head__rate-cart h6 {
  font-size: 10px;
}

.head__rate-cart img {
  width: 17px;
}

.head__price-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head__price-order a {
  padding: 4px 20px;
  background: #121213;
  color: #Fff;
}

.head__price {
  margin-right: 35px;
}

.head__price h2 {
  font-size: 20px;
  color: #dc1313;
  line-height: 18px;
  font-weight: 600;
}

.head__price p {
  font-size: 6px;
  font-weight: 600;
  width: 50px;
}

.head__cards {
  position: relative;
  top: 20%;
  height: 140px;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
}

.head__cards::-webkit-scrollbar {
  display: none;
}

.head__card {
  position: relative;
  cursor: pointer;
  min-width: 125px;
  min-height: 125px;
  border: 1px solid black;
  margin-right: 13px;
  background: #282828;
  border-radius: 50px 10px 10px 10px;
}

.head__card:nth-last-child {
  margin-right: 0px;
}

.head__card h4 {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-style: 13px;
  font-weight: 600;
}

.head__card h5 {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 0px 10px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.head__card > p {
  color: rgb(203, 203, 203);
  font-size: 9px;
  font-weight: 500;
  padding: 0px 10px;
}

.head__social {
  position: relative;
  top: 22%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
}

.head__btns {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.head__arrow-l,
.head__arrow-r {
  width: 13px;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.head__arrow-l:hover,
.head__arrow-r:hover {
  opacity: 0.7;
}

.head__arrow-l {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.head__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.head__icons img {
  width: 20px;
  -webkit-transition: 0.3 linear;
  -o-transition: 0.3 linear;
  transition: 0.3 linear;
}

@media (min-width: 75em) {
  .menu__item {
    padding-left: 0.625rem;
  }

  .menu__item {
    padding-right: 0.625rem;
  }

  .head__content {
    left: 23.125rem;
  }
}

@media (max-width: 1440px) {
  .wrapper {
    width: 75%;
  }
}

@media (max-width: 1260px) {
  .wrapper {
    width: 83%;
    height: 83%;
  }
}

@media (max-width: 1023.98px) {
  .header__logo {
    left: 11%;
  }
}

@media (max-width: 885px) {
  .wrapper {
    width: 95%;
    height: 95%;
  }
}

@media (max-width: 767.98px) {
  .header__logo {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .header__logo img {
    width: 270px;
    margin: 10px 0px 0px -10px;
  }

  .menu__list {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-40%);
        -ms-transform: translateY(-40%);
            transform: translateY(-40%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    right: 5px;
  }

  .menu__item {
    padding: 0px 0px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }

  .menu__cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .wrapper {
    width: 100%;
    height: 100%;
  }

  .head__content {
    display: inline-block;
    top: 35%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .head__content h1 {
    font-size: 32px;
  }

  .head__cards {
    top: 37%;
    margin-right: 10px;
  }

  .head__social {
    top: 38%;
  }
}

@media (max-width: 459.98px) {
  main {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media (max-width: 375px) {
  .head__cards {
    padding-left: 5px;
  }
}

@media (max-width: 20em) {
  .menu__item {
    padding-left: 0.3125rem;
  }

  .menu__item {
    padding-right: 0.3125rem;
  }

  .head__content {
    left: 16.875rem;
  }
}

@media (any-hover: none) {
  .menu__icon {
    cursor: default;
  }
}