* {
  padding: 0;
  margin: 0;
  font-family: "RoadRadio";
  font-weight: bold;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-moz-selection {
  background: #555351;
  color: white;
}

::selection {
  background: #555351;
  color: white;
}

::-moz-selection {
  background: #555351;
  color: white;
}

html {
  position: relative;
  background: url("../img/textures/bg-texture.png");
  background-repeat: repeat;
  background-color: rgb(5, 5, 5);
  background-color: rgba(5, 5, 5, 0.938);
  background-blend-mode: darken;
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}

.blur-lay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 1000;
  overflow-x: hidden;
}

.blur-lay.active {
  display: block;
}

.scroll-block {
  position: fixed;
  overflow: hidden;
  touch-action: none;
}

.no-select {
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1b1b1b;
}

::-webkit-scrollbar-thumb {
  background: #343434;
}

::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

.disable-scrollbar {
  scrollbar-width: none;
}
.disable-scrollbar ::-webkit-scrollbar {
  width: none;
}

.chapter {
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  color: white;
  font-family: "Micra";
  font-weight: normal;
  font-size: 35px;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.link-icon {
  position: relative;
}

.link-icon::after {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  margin: auto 0;
  margin-left: 5px;
  background-image: url("../img/icons/external_link.webp");
  background-repeat: no-repeat;
  background-size: auto 70%;
  background-position: center;
  filter: invert(1) brightness(0.5);
  transition: 100ms;
}

.link-icon:hover::after {
  filter: invert(1) brightness(1);
}

.data .link-icon::after, .data .link-icon:hover::after {
  filter: invert(1) brightness(0.53);
}

.header {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.664);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  position: fixed;
  width: 100vw;
  height: var(--header-height);
}
.header .logo {
  width: 200px;
  margin-left: 10vw;
}
.header .nav-buttons {
  z-index: 1001;
  margin-right: 10vw;
}
.header .nav-button, .header .menu-nav-button {
  color: white;
  background-color: transparent;
  border: none;
  font-size: 25px;
  margin: 0 0 0 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 100ms;
}
.header .nav-button {
  position: relative;
  opacity: 0.5;
}
.header .nav-button.active, .header .nav-button:hover {
  opacity: 0.95;
}
.header .nav-button.active::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: 100ms;
}
.header .menu-nav-button[data-id=reviews] {
  padding-bottom: 10px;
}
.header .menu-nav-button[data-id=portfolio] {
  text-decoration: underline;
}
.header .menu-nav-button {
  margin: 20px 0;
}
.header .menu-wrapper {
  display: none;
  margin-right: 10vw;
  width: 35px;
  height: 23px;
  cursor: pointer;
}
.header .menu-wrapper .menu-nav-buttons .contact-buttons {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.header .menu-wrapper .menu-nav-buttons .contact-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 30px;
  margin: 5px;
  background-color: white;
  border-radius: 10px;
}
.header .menu-wrapper .menu-nav-buttons .contact-buttons a img {
  width: 25px;
  height: 25px;
}
.header .hamburger-menu,
.header .hamburger-menu:after,
.header .hamburger-menu:before {
  width: 35px;
  height: 3px;
}
.header .hamburger-menu {
  transform: translateY(10px);
  background: rgb(255, 255, 255);
  transition: all 0ms 300ms;
}
.header .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
.header .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: rgb(255, 255, 255);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: rgb(255, 255, 255);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .hamburger-menu.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .hamburger-menu.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .menu-nav-buttons {
  display: none;
}
.header .menu-nav-buttons .menu-nav-button {
  color: white;
  width: 100%;
  margin: 0;
}
.header .menu-nav-buttons .menu-nav-button:hover {
  color: orange;
}
.header .menu-nav-buttons.active {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.img-bg {
  background-image: url("../img/textures/noise.webp");
  background-repeat: repeat;
  opacity: 0.02;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 50px;
  margin-bottom: 40px;
  width: 100vw;
  height: calc(100vh - 50px);
  background-color: #131313;
  background-image: url("../img/textures/main_block-bg-texture.png");
  background-repeat: repeat;
  background-size: 90%;
  color: white;
}
.main-block .left {
  width: auto;
  margin: 0 3% 0 10%;
}
.main-block .left .title p {
  font-family: "RF Dewi Expanded";
  font-weight: bolder;
  font-style: italic;
  white-space: nowrap;
  line-height: 1.15;
}
.main-block .left .title .title-p1 {
  font-size: 3.5vw;
}
.main-block .left .title .title-p2 {
  font-size: 4.4vw;
}
.main-block .left .title .title-p3 {
  font-size: 2.9vw;
}
.main-block .left .title .underline {
  position: relative;
  background-image: linear-gradient(45deg, rgb(255, 0, 179), #480269, #3a0155, rgb(179, 17, 157));
  background-size: 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-family: "RF Dewi Expanded";
  font-weight: bolder;
  font-style: italic;
}
.main-block .left .title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 99%;
  height: 5px;
  margin-left: 0.5%;
  background-image: linear-gradient(45deg, rgb(255, 0, 179), #480269, #3a0155, rgb(179, 17, 157));
  background-size: 100%;
  border-radius: 2px;
}
.main-block .left .text {
  width: 80%;
  margin: 30px 0 30px 0px;
  font-size: 1.7vw;
  border-left: 5px solid rgb(91, 5, 102);
  color: #f7efdd;
  background-color: #210130;
  padding: 10px 0 10px 15px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.main-block .left .buttons {
  display: flex;
}
.main-block .left .buttons button {
  padding: 0 30px;
  width: auto;
  min-width: 200px;
  height: 50px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 17.5px;
  font-weight: bolder;
  transition: 100ms;
}
.main-block .left .buttons button:hover {
  opacity: 0.9;
}
.main-block .left .buttons .button1 {
  background-color: #1f1f1f;
  color: white;
}
.main-block .left .buttons .button1:hover {
  opacity: 1;
  background: linear-gradient(45deg, #c106d8, rgb(55, 2, 80));
  color: black;
}
.main-block .left .buttons .button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-top: 2.5px;
  height: 45px;
  background-color: white;
  color: black;
}
.main-block .left .buttons .button2 img {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}
.main-block .left .buttons .action-buttons {
  display: flex;
}
.main-block .left .buttons .contact-buttons {
  display: flex;
}
.main-block .left .buttons .contact-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  transition: 100ms;
  margin-left: 10px;
  background-color: #1f1f1f;
}
.main-block .left .buttons .contact-buttons a img {
  margin: auto;
  width: 70%;
  height: 70%;
  filter: invert(1);
}
.main-block .left .buttons .button3:hover {
  background-color: white;
}
.main-block .left .buttons .button3:hover img {
  filter: invert(0);
}
.main-block .right {
  width: auto;
  margin-right: 10%;
}
.main-block .right img {
  width: 100%;
  height: auto;
  animation: beeAnimation 3s linear 0s infinite alternate;
  transform: translate(0px, 30px);
}
@keyframes beeAnimation {
  to {
    transform: translate(0px, 0px);
  }
}
.main-block .arrows {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.main-block .arrows:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 6.6666666667px solid rgba(255, 255, 255, 0.8);
  border-bottom: 6.6666666667px solid rgba(255, 255, 255, 0.8);
  transform: translate(6.6666666667px, 26.6666666667px) rotate(-45deg);
  animation: arrows 3s linear infinite;
}
.main-block .arrows:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 6.6666666667px solid rgba(255, 255, 255, 0.8);
  border-bottom: 6.6666666667px solid rgba(255, 255, 255, 0.8);
  transform: translate(13.3333333333px, 0px) rotate(-45deg);
  animation: arrows 3s linear infinite -1.5s;
}
@keyframes arrows {
  0% {
    border-left: 6.6666666667px solid rgba(0, 0, 0, 0);
    border-bottom: 6.6666666667px solid rgba(0, 0, 0, 0);
    transform: translate(-3.3333333333px, -13.3333333333px) rotate(-45deg);
  }
  10%, 90% {
    border-left: 6.6666666667px solid rgba(0, 0, 0, 0);
    border-bottom: 6.6666666667px solid rgba(0, 0, 0, 0);
  }
  50% {
    border-left: 6.6666666667px solid rgba(255, 255, 255, 0.8);
    border-bottom: 6.6666666667px solid rgba(255, 255, 255, 0.8);
    transform: translate(-3.3333333333px, 0px) rotate(-45deg);
  }
  100% {
    border-left: 6.6666666667px solid rgba(0, 0, 0, 0);
    border-bottom: 6.6666666667px solid rgba(0, 0, 0, 0);
    transform: translate(-3.3333333333px, 13.3333333333px) rotate(-45deg);
  }
}

.top-content {
  width: 100vw;
  padding: 40px 0;
}
.top-content .text {
  color: #fff;
  font-size: 20px;
  margin: 5px 0;
}
.top-content .post-header {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 80%;
  padding: 0 10%;
  font-size: 20px;
}
.top-content .post-header .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.top-content .post-header .wrapper {
  width: calc(100% - 60px);
  margin-left: 10px;
}
.top-content .post-header .wrapper .text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px 0px 3px 0px;
}
.top-content .post-header .wrapper .legend {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  color: #848484;
  overflow: hidden;
}
.top-content .post-header .wrapper .legend::after {
  content: "";
  color: #848484;
  animation: cursor 0.75s step-end infinite;
  border-right: 2px solid #848484;
}
@keyframes cursor {
  0% {
    border-color: #848484;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: #848484;
  }
}
.top-content .post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  padding: 0 10%;
  margin-bottom: 20px;
}
.top-content .post .left {
  width: 50%;
}
.top-content .post .left .text {
  font-weight: normal;
}
.top-content .post .left .text u {
  transition: 200ms;
}
.top-content .post .right {
  position: relative;
  padding-left: 2%;
  width: 45%;
}
.top-content .post .right .line {
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #c106d8, rgb(42, 1, 66), #c106d8, rgb(45, 1, 70));
  background-size: 400% 400%;
  animation: li-gradient-animation 10s linear infinite alternate;
  border-radius: 5px;
}
.top-content .post .right .title {
  margin-bottom: 10px;
  text-align: center;
  color: white;
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}
.top-content .post .right .features .wrapper {
  display: flex;
  justify-content: center;
  opacity: 0;
}
.top-content .post .right .features .wrapper li {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  margin: 3px 0;
  background: linear-gradient(45deg, #b506d8, rgb(39, 7, 54), #b506d8, rgb(39, 1, 56));
  background-size: 400% 400%;
  color: black;
  border-radius: 20px;
  overflow: hidden;
}
.top-content .post .right .features .wrapper li p {
  font-weight: normal;
  display: inline-block;
}
@keyframes li-gradient-animation {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.top-content .post .right .features.active .wrapper {
  animation: fade-in 1.5s ease;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-content .post:hover .left .text u {
  color: rgb(185, 13, 148);
}
.top-content .banner {
  width: 90%;
  padding: 0 5%;
}
.top-content .banner img {
  border-radius: 15px;
}

.shop {
  display: block;
  width: 80vw;
  padding: 0 10vw 40px;
}

.categories {
  justify-content: space-between;
  display: flex;
  width: auto;
  padding: 10px 25px;
  font-size: 22.5px;
}
.categories li {
  color: #848484;
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.categories li .block-right {
  font-family: "Micra";
  font-weight: normal;
  text-transform: uppercase;
  font-size: 20px;
}
.categories li.active {
  color: #ddd;
}

.products {
  flex: 1;
  padding: 10px;
}

.tab-id {
  display: none;
}

.tab-id.active {
  display: block;
}

.items {
  color: #848484;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 0.5fr));
  gap: 20px;
}

.item-id {
  position: relative;
  width: auto;
  text-align: center;
  align-items: center;
  transition: 100ms;
  border-radius: 15px;
}
.item-id .image {
  width: 90%;
  margin: 10px auto 5px auto;
  overflow: hidden;
}
.item-id .image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}
.item-id .bottom {
  display: block;
  width: 90%;
  margin: auto;
}
.item-id .bottom .title {
  overflow: hidden;
  display: -webkit-box;
  margin: 0 5px 0px 5px;
  text-align: left;
  font-size: 20px;
  color: white;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
}
.item-id .bottom .price {
  display: flex;
  transition: 100ms;
}
.item-id .bottom .price p, .item-id .bottom .price strike, .item-id .bottom .price u {
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  font-size: 12.5px;
  text-align: left;
  margin: 3px 0 10px 5px;
  text-transform: uppercase;
  transition: 100ms;
}
.item-id .bottom .price p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item-id .bottom .price u {
  margin-left: 0;
}
.item-id .bottom .price .old-price {
  margin-left: 0;
}
.item-id .bottom .price .old-price strike {
  color: #555351;
}
.item-id .bottom .price .old-price u {
  color: orangered;
}

.mark {
  display: flex;
  text-align: left;
  margin-left: 3px;
  transition: 100ms;
  width: -moz-fit-content;
  width: fit-content;
}
.mark .icon {
  font-size: 80%;
}
.mark .text {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.mark.new .text {
  background-image: #01cb50;
  background-image: linear-gradient(45deg, #01cb50, #f1f50e 80%);
}

.mark.popular .text {
  background-image: #f9c33b;
  background-image: linear-gradient(45deg, #f9c33b, #fa9005 80%);
}

.mark.unique .text {
  background-image: #4fd7fd;
  background-image: linear-gradient(45deg, #4fd7fd, #4ffdc9 80%);
}

.mark.season .text {
  background-image: #e70cd5;
  background-image: linear-gradient(45deg, #ff00dd, #5d0281 70%);
}

.item-id.hidden {
  display: none;
}

.item-id .rate, .item-id .order {
  display: none;
}

.item-id:not(.skeleton):hover {
  cursor: pointer;
}
.item-id:not(.skeleton):hover .price {
  filter: brightness(1.5);
}
.item-id:not(.skeleton):hover .mark {
  filter: brightness(1.1);
}

.tops {
  display: block;
  width: 80vw;
  padding: 0 10vw 40px 10vw;
}
.tops .wrapper {
  display: flex;
  align-items: center;
  z-index: 0;
}
.tops .wrapper .cards {
  display: flex;
  width: 65vw;
  height: auto;
  overflow: hidden;
  position: relative;
  align-items: flex-start;
  margin: 15px 0;
}
.tops .wrapper .cards .card {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  margin: auto 0;
  margin-right: 10vw;
  display: flex;
  justify-content: space-between;
  transition: all 100ms linear;
}
.tops .wrapper .cards .card .left {
  width: 57%;
  height: auto;
  color: #ddd;
  margin: auto 0;
}
.tops .wrapper .cards .card .left .title {
  display: inline-block;
  padding: 10px 15px;
  text-align: left;
  font-size: 22.5px;
  font-weight: bold;
  background: linear-gradient(45deg, var(--bg-color1, #c106d8), var(--bg-color2, rgb(70, 1, 87)));
  color: var(--title-color, #ddd);
  border-radius: 10px;
}
.tops .wrapper .cards .card .left .line {
  width: 100%;
  height: 3px;
  margin: 10px 0px;
  border-radius: 15px;
  background: linear-gradient(90deg, var(--bg-color1, #c106d8), var(--bg-color2, rgb(55, 2, 71)));
}
.tops .wrapper .cards .card .left .text {
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  font-size: 15px;
}
.tops .wrapper .cards .card .left .text u, .tops .wrapper .cards .card .left .text span, .tops .wrapper .cards .card .left .text p, .tops .wrapper .cards .card .left .text strike {
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  font-style: normal;
}
.tops .wrapper .cards .card .left .text u, .tops .wrapper .cards .card .left .text span, .tops .wrapper .cards .card .left .text p {
  color: var(--highlight-color, gold);
}
.tops .wrapper .cards .card .right {
  position: relative;
  display: block;
  width: auto;
  height: 100%;
  max-width: 40%;
  margin-left: 3%;
}
.tops .wrapper .cards .card .right .img {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88%;
}
.tops .wrapper .cards .card .right .img .flare-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: auto;
  height: auto;
}
.tops .wrapper .cards .card .right .img .flare-wrapper .flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30%;
  transform: skewX(-45deg);
  left: -100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.8;
}
.tops .wrapper .cards .card .right .img .flare-wrapper .flare.active {
  transition: all 0.8s ease-out;
  animation: none;
  left: 150%;
}
.tops .wrapper .cards .card .right .img .flare-wrapper img {
  border-radius: 15px;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 40vh;
}
.tops .wrapper .cards .card .right .data {
  display: flex;
  align-items: center;
  height: 10%;
  margin-top: 2%;
}
.tops .wrapper .cards .card .right .data a {
  color: #7d7b7d;
  transition: 100ms;
}
.tops .wrapper .cards .card .right .data a:hover {
  color: white;
}
.tops .wrapper .cards .card .right .data a:hover::after {
  filter: invert(1) brightness(1);
}
.tops .wrapper .cards .end {
  flex: 0 0 auto;
  text-align: center;
  width: 100%;
  height: auto;
  margin: auto 0;
  display: flex;
  justify-content: center;
}
.tops .wrapper .cards .end div {
  height: auto;
}
.tops .wrapper .cards .end .check-mark {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
}
.tops .wrapper .cards .end .check-mark img {
  width: 60px;
  height: 60px;
  opacity: 0.8;
}
.tops .wrapper .cards .end span {
  color: #7d7b7d;
  font-size: 20px;
}
.tops .wrapper .cards::-webkit-scrollbar {
  display: none;
}
.tops .checkbox .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tops .checkbox .buttons .checkbox-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 3px;
}
.tops .checkbox .buttons .checkbox-radio input {
  margin: 0 2.5px;
  width: 25px;
  height: 3px;
  border: none;
  border-radius: 50px;
  background-color: #848484;
  cursor: pointer;
  transition: 100ms;
}
.tops .checkbox .buttons .checkbox-radio.active input {
  background-color: white;
  display: block;
}
.tops .checkbox .buttons .checkbox-radio.active:hover {
  cursor: pointer;
}
.tops .checkbox .buttons .checkbox-radio.active:hover input {
  background-color: white;
}
.tops .checkbox .buttons .checkbox-radio:hover {
  cursor: pointer;
}
.tops .checkbox .buttons .checkbox-radio:hover input {
  background-color: #bdbdbd;
}
.tops .checkbox .arrows {
  display: none;
}

.arrow-left, .arrow-right {
  width: 7.5vw;
  height: 7.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  background-size: 35px 35px;
  filter: invert(1);
  opacity: 0.7;
}

.arrow-left {
  background-image: url("../img/icons/arrow_left.webp");
}

.arrow-right {
  background-image: url("../img/icons/arrow_right.webp");
}

.arrow-left, .arrow-right, .close {
  background-repeat: no-repeat;
  background-position: center;
  transition: 200ms;
}

.arrow-left:hover, .arrow-right:hover {
  opacity: 1;
}

.close:hover {
  filter: brightness(500%);
}

.reviews {
  display: block;
  width: 100vw;
  padding: 0 0vw 40px 0vw;
  font-size: 20px;
  color: #fff;
}
.reviews .chapter {
  display: flex;
  justify-content: center;
  margin-left: 0;
}
.reviews .wrapper {
  display: flex;
  align-items: center;
  overflow-x: scroll;
  padding: 15px 0;
  margin-bottom: 10px;
}
.reviews .wrapper .review {
  position: relative;
  min-width: 22.5%;
  height: -moz-min-content;
  height: min-content;
  margin-right: 2.5%;
  border-radius: 10px;
  background-color: #242424;
  transition: 100ms;
  text-decoration: none;
}
.reviews .wrapper .review .top {
  padding: 10px 10px 0 10px;
  display: flex;
  align-items: center;
}
.reviews .wrapper .review .top .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews .wrapper .review .top .avatar img {
  width: 100%;
  height: 100%;
}
.reviews .wrapper .review .top .name-wrapper {
  margin-left: 10px;
  color: #ddd;
}
.reviews .wrapper .review .top .name-wrapper .stars {
  overflow: hidden;
  margin-top: 5px;
  display: flex;
}
.reviews .wrapper .review .top .name-wrapper .stars .star {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  filter: drop-shadow(0px 100px 0 rgba(255, 217, 0, 0.906));
  transform: translateY(-100px);
}
.reviews .wrapper .review .bottom {
  padding-bottom: 10px;
}
.reviews .wrapper .review .bottom .text {
  margin: 10px 10px 10px 10px;
  font-family: "RF Dewi Expanded";
  color: #ddd;
  font-size: 12px;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.reviews .wrapper .review .bottom a {
  font-size: 12px;
  margin: 0 0 35px 10px;
  padding: 5px 10px;
  background-color: #444444;
  border-radius: 10px;
  color: #ddd;
  text-decoration: none;
}
.reviews .wrapper .review:first-child {
  margin-left: 2.5%;
}
.reviews .wrapper .review:hover {
  background-color: #2b2b2b;
  cursor: pointer;
}
.reviews .wrapper .review:hover .top .name-wrapper, .reviews .wrapper .review:hover .text {
  color: white;
}
.reviews .wrapper .review:hover .top .name-wrapper .stars .star {
  filter: drop-shadow(0px 100px 0 rgba(255, 224, 48, 0.906));
}
.reviews .all_reviews {
  color: #7c7973;
  text-align: center;
  text-decoration: none;
  padding: 5px 20px;
  background-color: rgba(32, 32, 32, 0.7607843137);
  border-radius: 10px;
}

.portfolio {
  width: 100vw;
  padding-bottom: 20px;
}
.portfolio .design .works, .portfolio .builds .works {
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  width: auto;
  height: auto;
  padding: 10px 0;
}
.portfolio .design .works .work, .portfolio .builds .works .work {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: auto;
  height: auto;
  margin: auto 0;
  margin-right: 3vw;
  color: #ddd;
}
.portfolio .design .works .work .img, .portfolio .builds .works .work .img {
  position: relative;
  width: auto;
}
.portfolio .design .works .work .img img, .portfolio .builds .works .work .img img {
  width: auto;
  height: 50vh;
  margin-bottom: 15px;
  border-radius: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.portfolio .design .works .work .img .zoom-button, .portfolio .builds .works .work .img .zoom-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: 100ms;
  background-image: url("../img/icons/zoom_in.webp");
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-position: center;
  cursor: pointer;
}
.portfolio .design .works .work .deskription, .portfolio .builds .works .work .deskription {
  width: 100%;
  font-size: 20px;
  text-align: center;
}
.portfolio .design .works .work.zoom, .portfolio .builds .works .work.zoom {
  position: fixed;
  top: 50%;
  transform: translateY(-45%);
  left: 0;
  width: 100vw;
  height: calc(100vh - --header-height);
  z-index: 10001;
}
.portfolio .design .works .work.zoom .img img, .portfolio .builds .works .work.zoom .img img {
  top: 50%;
  width: auto;
  height: auto;
  max-width: 80vw;
  max-height: 70vh;
}
.portfolio .design .works .work.zoom .img .zoom-button, .portfolio .builds .works .work.zoom .img .zoom-button {
  opacity: 0.7;
  background-image: url("../img/icons/close.webp");
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-position: center;
}
.portfolio .design .works .work.zoom .img .zoom-button.active, .portfolio .builds .works .work.zoom .img .zoom-button.active {
  opacity: 1;
}
.portfolio .design .works .work.zoom .img .zoom-button:hover, .portfolio .builds .works .work.zoom .img .zoom-button:hover {
  opacity: 1;
}
.portfolio .design .works .work.zoom .deskription, .portfolio .builds .works .work.zoom .deskription {
  transition: 100ms;
  color: #bdbdbd;
}
.portfolio .design .works .work:not(.zoom):hover .zoom-button, .portfolio .builds .works .work:not(.zoom):hover .zoom-button {
  opacity: 0.7;
}
.portfolio .design .works .work:not(.zoom):hover .zoom-button:hover, .portfolio .builds .works .work:not(.zoom):hover .zoom-button:hover {
  opacity: 1;
}
.portfolio .all_works {
  color: #7c7973;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  padding: 5px 20px;
  margin-top: 15px;
  background-color: rgba(32, 32, 32, 0.7607843137);
  border-radius: 10px;
}

.portfolio .works::-webkit-scrollbar, .reviews .wrapper::-webkit-scrollbar {
  display: none;
}

footer {
  width: 100vw;
  height: auto;
  position: absolute;
  background-color: black;
  font-size: 25px;
  font-weight: 600;
}
footer .top {
  display: flex;
  justify-content: space-between;
  width: 80vw;
  padding: 40px 10vw 0;
}
footer .top .copyright {
  color: #848484;
  font-size: 15px;
  width: 30%;
}
footer .top .copyright .logo {
  width: 70%;
  filter: brightness(0.6);
}
footer .top .copyright span {
  display: inline-block;
  margin-top: 15px;
}
footer .top .copyright span a {
  text-decoration: none;
  color: #bdbdbd;
  transition: 100ms;
}
footer .top .copyright span a:hover {
  color: #390053;
}
footer .top .copyright span:last-child {
  padding-left: 10px;
  border-left: 3px dashed #bdbdbd;
}
footer .top .links {
  display: block;
  margin: 0 13px 0 20px;
  text-align: right;
}
footer .top .link {
  margin-bottom: 5px;
}
footer .top .link a {
  position: relative;
  color: #848484;
  text-decoration: none;
  cursor: pointer;
  transition: 100ms;
}
footer .top .link a::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 80%;
  top: 10%;
  background-color: #320153;
  margin: 0 10px;
}
footer .top .link a:hover {
  color: #400050;
}
footer .top .link a:hover::after {
  background-color: #35004e;
}
footer .bottom {
  width: 80vw;
  padding: 0 10vw 30px;
}
footer .bottom .line {
  width: 100%;
  height: 3px;
  background-color: rgba(132, 132, 132, 0.4117647059);
  margin: 20px 0;
}
footer .bottom .mail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #ddd;
}

#rate {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
}
#rate ::-webkit-scrollbar {
  display: none;
}

#okno {
  text-align: center;
  color: #ddd;
  position: relative;
  width: 70vw;
  height: auto;
  max-height: 80vh;
  overflow: auto;
  touch-action: auto;
  z-index: 10000;
  padding: 25px;
  background: linear-gradient(170deg, #1b1b1b 2%, #0b0b0b 98%);
  border-radius: 15px;
  animation: toLeft 0.8s;
}
#okno .image {
  display: none;
}
#okno .bottom {
  display: none;
}
#okno .rate, #okno .order {
  width: 100%;
  height: 100%;
}
#okno .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 35px;
  height: 35px;
  z-index: 10001;
  background-size: 35px 35px;
  cursor: pointer;
}
#okno .close.overlay {
  z-index: 10002;
  opacity: 1;
}
#okno .logo {
  margin: 0 auto;
}
#okno .logo img {
  max-width: 150px;
}
#okno .buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15vw;
  height: 40px;
  padding: 3px;
  border-radius: 10px;
  background: linear-gradient(45deg, #c106d8, rgb(55, 1, 77));
  transition: background 100ms ease;
}
#okno .buy p, #okno .buy .button {
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-decoration: none;
  color: black;
}
#okno .buy p, #okno .buy:not(:has(.button.not-active)) .button {
  cursor: pointer;
}
#okno .buy:has(.button.not-active) {
  background: linear-gradient(45deg, #555351, #343434);
  cursor: default;
}
#okno .buy:has(.button.not-active) .button {
  color: #7c7973;
}
#okno .buy p {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#okno .buy:not(:has(.button.not-active)):hover {
  padding: 0;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(45deg, #c106d8, rgb(55, 1, 77)) border-box;
}
#okno .buy:not(:has(.button.not-active)):hover p, #okno .buy:not(:has(.button.not-active)):hover input[type=submit] {
  color: white;
}
#okno .buy:has(.button.not-active):hover {
  cursor: default;
}
#okno .rate .top {
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#okno .rate .top .images {
  display: flex;
  width: 50%;
  height: 100%;
}
#okno .rate .top .images .main-image-wrapper {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  cursor: pointer;
}
#okno .rate .top .images .main-image-wrapper.zoom {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10001;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
}
#okno .rate .top .images .main-image-wrapper.zoom .main-image {
  width: auto;
  height: auto;
  max-height: 80%;
  cursor: auto;
}
#okno .rate .top .images .main-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0px 0px 25px 0px rgba(53, 53, 53, 0.5058823529);
}
#okno .rate .top .images img {
  border-radius: 10px;
}
#okno .rate .top .images .img-bg {
  z-index: 100;
}
#okno .rate .top .images .other-images {
  display: block;
  width: 10%;
  height: 50vh;
  overflow-y: scroll;
  order: 0;
  margin: 0 10px 0 0;
}
#okno .rate .top .images .other-image-wrapper {
  overflow: hidden;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: inherit;
  margin: 15px 0 15px 0px;
  padding: 2px 0;
  cursor: pointer;
  border-radius: 5px;
}
#okno .rate .top .images .other-image-wrapper:first-child {
  margin-top: 0;
}
#okno .rate .top .images .other-image-wrapper:last-child {
  margin-bottom: 0;
}
#okno .rate .top .images .other-image {
  width: auto;
  height: auto;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  border-radius: 5px;
}
#okno .rate .top .images .other-image-wrapper.active .other-image {
  box-shadow: inset 0 -3em 3em rgba(0, 0, 0, 0.1), 0 0 0 2px #444444, 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}
#okno .rate .top .wrapper {
  display: inline-block;
  position: relative;
  width: 50%;
  font-size: 25px;
  text-align: left;
  margin: 0 0 0 15px;
}
#okno .rate .top .wrapper .title-line {
  display: block;
  margin-bottom: 10px;
}
#okno .rate .top .wrapper .title-line .title {
  font-size: 30px;
  font-weight: 700;
}
#okno .rate .top .wrapper .title-line .mark {
  text-align: left;
  font-size: 20px;
  margin-left: -2px;
}
#okno .rate .top .wrapper .title-line .path {
  font-size: 20px;
  color: #7c7973;
}
#okno .rate .top .wrapper .timeline {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #7c7973;
  margin-top: 3px;
}
#okno .rate .top .wrapper .timeline img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#okno .rate .top .wrapper .price {
  display: flex;
}
#okno .rate .top .wrapper .price p, #okno .rate .top .wrapper .price strike, #okno .rate .top .wrapper .price u {
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  font-size: 17.5px;
  text-align: left;
  text-transform: uppercase;
  transition: 100ms;
}
#okno .rate .top .wrapper .price .old-price {
  margin-left: 10px;
}
#okno .rate .top .wrapper .price .old-price strike {
  color: #848484;
}
#okno .rate .top .wrapper .price .old-price u {
  color: orangered;
}
#okno .rate .top .wrapper .variants {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 5px;
}
#okno .rate .top .wrapper .variants .variant {
  margin-top: 10px;
  padding: 5px 15px 7px 15px;
  font-size: 15px;
  margin-right: 15px;
  border-radius: 10px;
  text-transform: uppercase;
  background-color: #1f1f1f;
  cursor: pointer;
}
#okno .rate .top .wrapper .variants .variant.active {
  background-color: #77d4ff;
  color: black;
  cursor: unset;
}
#okno .rate .top .wrapper .buy {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 20px;
}
#okno .rate .information {
  width: auto;
  height: auto;
  display: block;
  margin: 30px 5% 0 5%;
}
#okno .rate .information .deskript {
  font-size: 15px;
  font-weight: normal;
  text-align: left;
}
#okno .rate .information .deskript a {
  color: #848484;
  transition: 100ms;
}
#okno .rate .information .deskript a:hover {
  color: #ddd;
}
#okno .rate .information .tip {
  margin-top: 15px;
  text-align: start;
  color: #888;
}
#okno .rate .information .tip a {
  color: #bdbdbd;
  transition: 100ms;
}
#okno .rate .information .tip a:hover {
  color: #ddd;
}
#okno .rate .information .brif {
  display: flex;
  align-items: center;
  justify-content: left;
  width: auto;
  height: auto;
  opacity: 0.5;
  transition: 100ms;
  text-decoration: none;
}
#okno .rate .information .brif img {
  filter: invert(1);
  height: 90%;
  max-height: 40px;
  width: auto;
  margin: auto 0;
  padding-top: 5px;
}
#okno .rate .information .brif .wrapper {
  width: auto;
  height: 100%;
  display: block;
  margin: auto 0;
  margin-left: 10px;
  text-align: left;
}
#okno .rate .information .brif .wrapper .name {
  color: white;
  font-size: 18px;
  font-weight: 500;
}
#okno .rate .information .brif .wrapper .size {
  color: #888;
  font-size: 15px;
}
#okno .rate .information .brif:hover {
  opacity: 0.9;
}
#okno .order .wrapper {
  margin: 0 5% 40px 5%;
}
#okno .order .wrapper .logo {
  width: 150px;
  margin: 0 auto;
}
#okno .order .wrapper .logo img {
  width: 100%;
}
#okno .order .wrapper .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 50px 0;
}
#okno .order .wrapper .top .info {
  font-size: 16px;
  display: flex;
  align-items: center;
  text-align: left;
}
#okno .order .wrapper .top .info .main-image-wrapper {
  margin-right: 15px;
}
#okno .order .wrapper .top .info .main-image-wrapper .main-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}
#okno .order .wrapper .top .info .title-line {
  display: flex;
  flex-wrap: wrap;
}
#okno .order .wrapper .top .info .title-line .title {
  margin-right: 5px;
  font-size: 18px;
}
#okno .order .wrapper .top .info .title-line .path {
  color: #7c7973;
}
#okno .order .wrapper .top .info .mark {
  text-align: left;
  font-size: 16px;
  margin-left: -2px;
}
#okno .order .wrapper .top .price p {
  font-family: "RF Dewi Expanded";
  color: #888;
  font-weight: bold;
  text-transform: uppercase;
  text-align: end;
}
#okno .order .wrapper .center .info {
  font-size: 23px;
  text-align: left;
}
#okno .order .wrapper .center .custom-price {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 18px;
}
#okno .order .wrapper .center .custom-price .deskription {
  color: #7c7973;
}
#okno .order .wrapper .center .custom-price .value {
  width: 10px;
  min-width: 5px;
  transition: width 0.2s;
  margin-left: 10px;
  background-color: #343434;
  border-radius: 3px;
  padding: 3px 5px;
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  border: none;
  color: #bdbdbd;
}
#okno .order .wrapper .center .custom-price .value:focus {
  outline: none;
}
#okno .order .wrapper .center .custom-price .value::-webkit-outer-spin-button,
#okno .order .wrapper .center .custom-price .value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#okno .order .wrapper .center .custom-price .ruble {
  margin-left: 5px;
  font-family: "RF Dewi Expanded";
  font-weight: bold;
  font-size: 13px;
  color: #7c7973;
}
#okno .order .wrapper .payment {
  display: flex;
  position: relative;
  padding-bottom: 55px;
}
#okno .order .wrapper .payment .buy {
  width: 200px;
  height: 35px;
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#okno .order .wrapper .payment .buy .button {
  font-family: "RF Dewi Expanded";
  font-size: 13px;
  font-size: bold;
  text-transform: uppercase;
}

#rate:target {
  display: block;
}

#order {
  display: none;
}

.categories li, .reviews .all_reviews, .portfolio .all_works {
  transition: 100ms;
}

.categories li:hover, .reviews .all_reviews:hover, .portfolio .all_works:hover {
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .item-id:hover {
    background-color: #191919;
    border-radius: 15px;
  }
  .item-id:hover .image img {
    filter: brightness(1.1);
  }
  .item-id:hover .image {
    border-radius: 15px;
    box-shadow: 0px 0px 25px 0px rgba(73, 73, 73, 0.5803921569);
  }
}
@media screen and (max-width: 1400px) {
  .categories {
    display: block;
    padding: 10px;
  }
  .categories title {
    position: absolute;
    font-size: 45px;
  }
  .categories li {
    text-align: right;
    font-size: 20px;
  }
  .main-block .left .buttons {
    display: block;
  }
  .main-block .left .buttons .contact-buttons {
    margin-top: 10px;
  }
  .main-block .left .buttons .contact-buttons a {
    margin-left: 0;
    margin-right: 10px;
  }
  .top-content {
    display: block;
  }
  .top-content .banner {
    width: 100%;
    padding: 30px 0;
  }
  .tops .wrapper {
    width: 80vw;
  }
  .tops .wrapper .cards {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 10px;
    overflow-x: auto;
  }
  .tops .wrapper .cards .card {
    margin: 0 10vw 0 0;
    display: block;
  }
  .tops .wrapper .cards .card .left {
    width: auto;
    margin: 0 20px 20px 20px;
  }
  .tops .wrapper .cards .card .left .title {
    display: flex;
    justify-content: center;
  }
  .tops .wrapper .cards .card .right {
    display: flex;
    justify-content: center;
    width: calc(100% - 40px);
    max-width: 100%;
    max-height: 60vh;
    margin: 0 20px;
  }
  .tops .wrapper .cards .card .right .img .flare-wrapper img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60vh;
    margin-top: 10px;
  }
  .tops .wrapper .cards .card .right .data {
    display: none;
  }
  .tops .wrapper .cards .card .line {
    margin: 20px 60px;
  }
  .tops .wrapper .cards .end {
    font-size: 65px;
  }
  .tops .wrapper .arrow-left, .tops .wrapper .arrow-right {
    display: none;
  }
  .tops .checkbox {
    display: flex;
    justify-content: space-between;
    height: 25px;
    padding: 0 20px;
  }
  .tops .checkbox .arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .tops .checkbox .arrows .arrow-left, .tops .checkbox .arrows .arrow-right {
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    background-size: 25px 25px;
  }
  .tops .checkbox .arrows .arrow-left {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .header .logo {
    margin-left: 5vw;
  }
  .header .nav-buttons {
    display: none;
  }
  .header .menu-wrapper {
    display: block;
    margin-right: 5vw;
  }
  .main-block {
    display: block;
  }
  .main-block .left {
    width: 100%;
    height: auto;
    margin: 20vh auto;
    text-align: center;
  }
  .main-block .left .title .title-p1 {
    font-size: 7vw;
  }
  .main-block .left .title .title-p2 {
    font-size: 8.9vw;
  }
  .main-block .left .title .title-p3 {
    font-size: 5.9vw;
  }
  .main-block .left .text {
    margin: 30px auto;
    width: 95%;
    font-size: 2.5vw;
    background-color: unset;
    border: unset;
    border-radius: unset;
    padding-left: 0;
  }
  .main-block .left .buttons .action-buttons {
    justify-content: center;
  }
  .main-block .left .buttons .contact-buttons {
    justify-content: center;
  }
  .main-block .left .buttons .contact-buttons a {
    margin: 0 5px;
  }
  .main-block .right {
    display: none;
  }
  #okno {
    width: 85vw;
    height: auto;
    max-height: 90vh;
  }
  #okno ::-webkit-scrollbar {
    display: none;
  }
  #okno .rate {
    display: block;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
  }
  #okno .rate .top {
    display: block;
    width: 100%;
    height: auto;
  }
  #okno .rate .top .close {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
  #okno .rate .top .images {
    width: 100%;
    height: auto;
    display: block;
  }
  #okno .rate .top .images .main-image-wrapper {
    width: 100%;
    max-height: 60vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #okno .rate .top .images .main-image-wrapper.zoom {
    max-height: 100vh;
  }
  #okno .rate .top .images .main-image {
    width: auto;
    max-height: 60vh;
  }
  #okno .rate .top .images .other-images {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0;
    margin-top: 10px;
  }
  #okno .rate .top .images .other-image-wrapper {
    display: flex;
    min-width: 60px;
    height: 60px;
    position: relative;
    margin: 0 5px;
  }
  #okno .rate .top .images .other-image-wrapper:first-child {
    margin-left: 0;
  }
  #okno .rate .top .images .other-image-wrapper:last-child {
    margin-right: 0;
  }
  #okno .rate .top .wrapper {
    margin: 25px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #okno .rate .top .wrapper .content-wrapper {
    display: block;
  }
  #okno .rate .top .wrapper .title-line {
    display: block;
    margin-bottom: 10px;
  }
  #okno .rate .top .wrapper .title-line .title {
    font-size: 25px;
  }
  #okno .rate .top .wrapper .title-line .path {
    margin: 0;
  }
  #okno .rate .top .wrapper .price {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
  }
  #okno .rate .top .wrapper .buy {
    position: relative;
    width: 150px;
    aspect-ratio: 4/1;
    margin: 0;
  }
  #okno .rate .top .wrapper .buy a, #okno .rate .top .wrapper .buy input[type=submit] {
    font-size: 17.5px;
  }
  #okno .rate .information {
    margin: 20px 0 0 0;
  }
  #okno .rate .information .deskript {
    font-size: 20px;
    color: #c9c9c9;
  }
  #okno .order .wrapper {
    margin: 0;
  }
  .top-content .post-header {
    width: 95%;
    padding: 0 2.5%;
  }
  .top-content .post-header .avatar {
    width: 40px;
    height: 40px;
  }
  .top-content .post-header .wrapper {
    width: calc(100% - 50px);
  }
  .top-content .post-header .wrapper .text {
    font-size: 17.5px;
  }
  .top-content .post-header .wrapper .legend {
    font-size: 15px;
  }
  .top-content .post {
    width: 95%;
    padding: 0 2.5%;
  }
  .top-content .post .text {
    font-size: 15px !important;
  }
  .top-content .post .right {
    margin-top: 10px;
  }
  .top-content .post .right .title {
    text-align: end;
  }
  .top-content .post .right .features .wrapper {
    display: flex;
    justify-content: end;
  }
  .top-content .post .right .features .wrapper li {
    text-align: center;
  }
  .top-content .post .bottom {
    width: auto;
    height: auto;
  }
  .top-content .post .bottom .btn {
    width: 100%;
    padding: 10px 0;
    margin: 15px 0 0 0;
    align-items: center;
    text-align: center;
  }
  .top-content .post .bottom .btn .text {
    font-size: 15px;
  }
  .shop {
    width: 95%;
    padding: 0 2.5% 15px;
  }
  .shop .chapter {
    padding: 15px 0;
  }
  .shop .categories {
    padding: 10px 0;
  }
  .shop .products {
    padding: 10px 0;
  }
  .tops {
    width: 95%;
    padding: 0 2.5% 15px;
  }
  .tops .wrapper {
    width: 100%;
  }
  .tops .wrapper .cards .card .left {
    margin: 0;
  }
  .tops .checkbox {
    padding: 0;
  }
  .items {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  .items .item-id .image {
    width: 100%;
  }
  .items .item-id .bottom {
    width: 100%;
  }
  .items .item-id .bottom .title {
    font-size: 17.5px;
    margin-bottom: 0;
  }
  .items .item-id .bottom .price {
    white-space: nowrap;
    font-size: 13px;
  }
  .items img {
    padding: 0;
  }
  .reviews .wrapper .review {
    min-width: 80vw;
  }
  .reviews .wrapper .review .top .avatar {
    width: 40px;
    height: 40px;
  }
  .portfolio .design .works .work.zoom .img img, .portfolio .builds .works .work.zoom .img img {
    max-width: 95vw;
  }
  .fuga-banner {
    padding-bottom: 20px;
  }
  .fuga-banner .right {
    display: none;
  }
  .fuga-banner a {
    width: 95%;
    height: auto;
  }
  .fuga-banner a img {
    max-width: 100%;
  }
  footer .top {
    width: 95%;
    padding: 20px 2.5% 10px 2.5%;
  }
  footer .top .copyright {
    width: 60%;
  }
  footer .top .links {
    width: 40%;
    font-size: 20px;
  }
  footer .top .links .link {
    margin-bottom: 5px;
  }
  footer .top .links .link:last-child {
    margin-bottom: 0;
  }
  footer .bottom {
    width: 95%;
    padding: 0 2.5% 20px 2.5%;
  }
  footer .bottom .mail {
    display: block;
  }
  footer .bottom .mail p {
    text-align: center;
  }
  footer .bottom .mail p:last-child {
    margin-top: 5px;
  }
}
@media screen and (max-width: 700px) {
  #okno .rate .top .wrapper {
    display: block;
  }
  #okno .rate .top .wrapper .buy {
    margin-top: 20px;
    width: 100%;
    padding: 3px 0;
  }
  #okno .rate .top .wrapper .buy a, #okno .rate .top .wrapper .buy input[type=submit] {
    font-size: 17.5px;
  }
}
@media screen and (max-width: 600px) {
  .main-block .left {
    margin-top: 50px;
  }
  .main-block .left .title {
    font-size: 7vw;
  }
  .main-block .left .title .underline::after {
    height: 3px;
  }
  .main-block .left .text {
    width: 100%;
    font-size: 4.5vw;
  }
  .main-block .left .buttons {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 90%;
    z-index: 2;
  }
  .main-block .left .buttons .action-buttons {
    display: block;
  }
  .main-block .left .buttons button {
    width: 100%;
    height: 50px;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .main-block .left .buttons .button2 {
    margin-top: 15px;
    margin-left: 0;
  }
  .main-block .left .buttons .button3 {
    width: 50px;
    margin: 15px auto 0 auto;
  }
  .main-block .right video {
    margin-top: 40px;
  }
  .top-content {
    padding: 0;
  }
  .top-content .post-header .wrapper .text, .top-content .post-header .wrapper .date {
    font-size: 15px;
  }
  .top-content .post {
    display: block;
    margin-bottom: 0;
  }
  .top-content .post .left, .top-content .post .right {
    width: 100%;
    padding-left: 0;
  }
  .top-content .post .right {
    margin-top: 15px;
    padding-top: 10px;
  }
  .top-content .post .right .title {
    font-size: 20px;
    text-align: center;
  }
  .top-content .post .right .features .wrapper {
    justify-content: center;
  }
  .top-content .post .right .features .wrapper li {
    text-align: center;
  }
  .top-content .post .right .line {
    width: 100%;
    height: 5px;
  }
  .top-content .banner {
    position: absolute;
    top: 60vh;
    z-index: 1;
  }
  .tops {
    width: 95vw;
    padding: 0 2.5vw 50px 2.5vw;
  }
  .tops .chapter {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  .tops .cards {
    min-width: 95vw;
  }
  .reviews {
    padding-bottom: 15px;
  }
  .reviews .wrapper {
    margin-bottom: 0;
  }
  .reviews .wrapper .review {
    min-width: 95%;
  }
  .reviews .wrapper .review:last-child {
    margin-bottom: 0;
  }
  .portfolio .design .works .work .img img, .portfolio .builds .works .work .img img {
    height: 30vh;
  }
  #okno {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    padding: 0 15px;
    border-radius: 0;
  }
  #okno .close {
    right: 0;
  }
  #okno .rate {
    position: relative;
    padding: 25px 0;
  }
  #okno .order {
    position: relative;
  }
  #okno .order {
    display: flex;
    align-items: center;
  }
  #okno .order .logo {
    position: absolute;
    top: 25px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  #okno .order .wrapper {
    margin: auto 0;
  }
  #okno .order .wrapper .top {
    display: block;
    margin: 20px 0 30px 0;
  }
  #okno .order .wrapper .top .info {
    background-color: rgba(68, 68, 68, 0.1647058824);
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 10px 7px 10px;
    border-radius: 10px;
    margin: 0 auto;
  }
  #okno .order .wrapper .top .info .title-line {
    display: block;
  }
  #okno .order .wrapper .top .info .title-line .title {
    font-size: 20px;
  }
  #okno .order .wrapper .top .info .popular {
    display: none;
  }
  #okno .order .wrapper .top .price {
    margin-top: 10px;
  }
  #okno .order .wrapper .top .price p {
    text-align: center;
  }
  #okno .order .wrapper .center .info {
    font-size: 20px;
  }
  footer .top .copyright span:last-child {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .header .logo {
    width: 150px;
  }
  .chapter {
    font-size: 25px;
  }
  .categories li .block-right {
    font-size: 17.5px;
  }
  .items {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    row-gap: 5px;
  }
  .items .item-id .bottom .title, .items .item-id .bottom .mark, .items .item-id .bottom .price p {
    margin: 0;
  }
  .items .item-id .bottom .mark {
    margin-left: -2px;
    font-size: 12px;
  }
  .items .item-id .bottom .title, .items .item-id .bottom .price p, .items .item-id .bottom .price strike, .items .item-id .bottom .price u {
    text-align: left;
    font-size: 10px;
  }
  .items .item-id .bottom .price .old-price u {
    display: none;
  }
}
@keyframes skeleton {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}/*# sourceMappingURL=index.css.map */