@import '../fonts/Lora/stylesheet.css';
@import '../fonts/Roboto/stylesheet.css';
@import '../fonts/SourceSansPro/stylesheet.css';
body {
  font-family: "Source Sans Pro";
  font-size: 14px;
  color: #070917;
  background-color: #fff;
  padding: 0;
  margin: 0;
  overflow-y: overlay;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

#app {
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

*,
*:hover,
*:after {
  box-sizing: border-box;
  font-family: "Source Sans Pro";
}

h1, h2, h3, h4, h5, h6, p, li, div, span {
  cursor: default;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Source Sans Pro";
  font-weight: 900;
}

ul {
  display: block;
  list-style-type: disc;
  padding-left: 24px;
  margin: 0;
}
ul li {
  color: #212121;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0 !important;
}

a,
input,
button {
  font-family: "Source Sans Pro";
  text-decoration: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s linear;
}
a *,
input *,
button * {
  cursor: pointer !important;
}

a button {
  pointer-events: none;
}

input {
  cursor: text;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

button {
  font-weight: 500;
  font-size: 14px;
  background-color: transparent;
}

img,
.img {
  display: block;
  max-width: 100%;
  height: auto;
}

p, a {
  font-family: "Source Sans Pro";
  color: #212121;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

#snackbar {
  display: inline-flex;
  align-items: center;
  grid-gap: 10px;
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #3BC963;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  color: white !important; /* White text color */
  text-align: center; /* Centered text */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  top: 30px; /* 30px from the bottom */
}
#snackbar::before {
  content: "";
  display: block;
  height: 28px;
  width: 28px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzUiIHZpZXdCb3g9IjAgMCAzNSAzNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzExNjNfNDQwMSkiPgo8cGF0aCBkPSJNMTMuMTI1MSAyMy42MjVMOC4wMjA5NiAxOC41MjA4QzcuNDUyMjEgMTcuOTUyMSA2LjU0ODA1IDE3Ljk1MjEgNS45NzkzIDE4LjUyMDhDNS40MTA1NSAxOS4wODk2IDUuNDEwNTUgMTkuOTkzNyA1Ljk3OTMgMjAuNTYyNUwxMi4wODk3IDI2LjY3MjlDMTIuNjU4NSAyNy4yNDE3IDEzLjU3NzIgMjcuMjQxNyAxNC4xNDYgMjYuNjcyOUwyOS42MDQzIDExLjIyOTJDMzAuMTczIDEwLjY2MDQgMzAuMTczIDkuNzU2MjQgMjkuNjA0MyA5LjE4NzQ5QzI5LjAzNTUgOC42MTg3NCAyOC4xMzE0IDguNjE4NzQgMjcuNTYyNiA5LjE4NzQ5TDEzLjEyNTEgMjMuNjI1WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTYzXzQ0MDEiPgo8cmVjdCB3aWR0aD0iMzUiIGhlaWdodD0iMzUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
/* -----VARIABLES----- */
.bg-cover {
  overflow: hidden;
}
.bg-cover img {
  height: 100%;
  width: 100%;
}

.countControl {
  height: 45px;
  display: flex;
  grid-gap: 5px;
}
.countControl button, .countControl .count {
  min-width: 26px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
}
.countControl button {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.countControl button:hover {
  background-color: rgba(64, 148, 247, 0.1) !important;
  border-color: rgba(64, 148, 247, 0.2) !important;
}
.countControl .count {
  width: 45px;
}

.doublePreview:hover .preview img:last-child {
  opacity: 1;
}
.doublePreview .preview {
  position: relative;
  padding-bottom: 100%;
  background-color: #F0ECE7;
}
.doublePreview .preview img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.doublePreview .preview img:last-child {
  opacity: 0;
}

.dark-star {
  filter: grayscale(1);
  opacity: 0.6;
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
.wrapper-block {
  margin: 60px auto 120px;
}
.wrapper-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #212121;
}
.wrapper-header-withSb {
  margin-bottom: 40px;
}
.wrapper-header-withSb .wrapper-title {
  margin-bottom: 16px;
}
.wrapper-header-withSb p {
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .wrapper {
    padding: 0 30px;
  }
  .wrapper-block {
    margin: 50px auto 90px;
  }
}
@media (max-width: 992px) {
  .wrapper-block {
    margin: 40px auto 80px;
  }
  .wrapper-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .wrapper-header-withSb {
    margin-bottom: 35px;
  }
  .wrapper-header-withSb .wrapper-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
  .wrapper-block {
    margin: 40px auto 70px;
  }
  .wrapper-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .wrapper-header-withSb {
    margin-bottom: 30px;
  }
  .wrapper-header-withSb .wrapper-title {
    margin-bottom: 14px;
  }
}
@media (max-width: 576px) {
  .wrapper-block {
    margin: 30px auto 70px;
  }
}
@media (max-width: 380px) {
  .wrapper-block {
    margin: 30px auto 70px;
  }
}

.header {
  width: 100%;
  position: absolute;
  top: 0px;
  z-index: 999;
  background-color: white;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0);
  transition: all 0.3s linear;
}
.header.big .header-logo {
  width: 175px;
  box-shadow: 4px 2px 10px rgba(0, 0, 0, 0.3);
}
.header.big .header-logo img {
  height: 100px;
  width: 185px;
}
.header.fixed {
  position: fixed;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 8px;
  border-bottom: 1px solid #E1E1E1;
}
.header-col {
  display: flex;
  align-items: center;
  grid-gap: 50px;
}
.header-col:first-of-type {
  grid-gap: 62px;
}
.header-logo {
  display: block;
  height: 62px;
  width: 114px;
  position: relative;
  transition: all 0.4s linear;
}
.header-logo img {
  height: 100%;
  width: 100%;
  max-width: 2000px !important;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s linear;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
}
.header-text {
  font-weight: 500;
  margin-bottom: 0;
}
.header-link.likes, .header-link.cart {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.header-link.likes .icon, .header-link.cart .icon {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
}
.header-link.likes svg, .header-link.cart svg {
  width: 16px;
  height: 16px;
}
.header-link.likes .icon {
  width: 18px;
}
.header-link.likes svg {
  width: 18px;
}
.header-link .count {
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #4094F7;
  border: 1px solid #212121;
  position: absolute;
  top: -2px;
  right: -5px;
}
.header-link .count span {
  font-size: 8px;
  color: white;
}
.header-lang {
  position: relative;
}
.header-lang:hover .header-lang-dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: top ease-in-out 0.3s, opacity 0.3s linear, visibility 0.4s ease-in-out;
}
.header-lang-btn {
  display: flex;
  align-items: center;
  grid-gap: -2px;
}
.header-lang-btn .header-text {
  margin-right: -2px;
}
.header-lang-btn svg {
  display: block;
  width: 24px;
  height: 24px;
}
.header-lang-btn:focus ~ .header-lang-dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: top ease-in-out 0.3s, opacity 0.3s linear, visibility 0.4s ease-in-out;
}
.header-lang-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  padding: 4px 0;
  background: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  transition: top ease-in-out 0.3s, opacity 0.4s linear, visibility 0.5s ease-in-out;
}
.header-lang-option {
  padding: 4px 10px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.header-lang-option:hover {
  background-color: rgba(64, 148, 247, 0.1);
}
.header-lang-option p {
  font-weight: 500;
}
.header-lang-option.active p {
  color: #4094F7;
}
.header-catalog {
  width: 100%;
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 2;
  padding: 22px 0;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  transition: top ease-in-out 0.5s, opacity 0.5s linear, visibility 0.6s ease-in-out;
}
.header-catalog-wrapper {
  height: 100%;
}
.header-catalog-wrapper:hover .header-catalog {
  top: 80%;
  opacity: 1;
  visibility: visible;
  transition: top ease-in-out 0.4s, opacity 0.2s linear, visibility 0.5s ease-in-out;
}
.header-catalog-wrapper .header-link {
  display: flex;
  align-items: center;
}
.header-catalog-wrapper .header-link .header-text {
  margin-right: -2px;
}
.header-catalog-wrapper .header-link svg {
  height: 24px;
  width: 24px;
}
.header-catalog-inner {
  display: flex;
  justify-content: space-around;
}
.header-catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-catalog-item .categories-preview {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  padding-bottom: 0 !important;
}
.header-catalog-item .categories-title {
  margin-bottom: 4px;
}
.header-dropDown {
  position: absolute;
  top: calc(100% + 20px);
  right: -20px;
  z-index: 2;
  width: 340px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s linear, top 0.3s ease-in-out;
}
.header-dropDown-main {
  position: relative;
}
.header-dropDown-main:hover .header-dropDown {
  top: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}
.header-dropDown-title {
  display: block;
  padding: 14px 14px 18px;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #DADADA;
}
.header-dropDown-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 14px;
}
.header-dropDown-item {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.header-dropDown-item:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
  margin-bottom: 0px;
}
.header-dropDown-bottom {
  display: flex;
  justify-content: end;
  padding: 10px 14px 18px;
  border-top: 1px solid #DADADA;
}
.header-dropDown-link {
  display: inline-flex;
  align-items: center;
  grid-gap: 3px;
  font-weight: 500;
  font-size: 16px;
  color: #4094F7;
}
.header-dropDown-link img {
  display: block;
  height: 15px;
  width: 15px;
  position: relative;
  right: 0;
  transition: right 0.3s linear;
}
.header-dropDown-link:hover img {
  right: -4px;
}
.header-dropDown-burger {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-dropDown-burger img {
  display: block;
  width: 30px;
  height: 30px;
}
.header-menu, .header-burger {
  display: none;
}
@media (max-width: 1200px) {
  .header.big .header-logo {
    width: 159.6px;
  }
  .header.big .header-logo img {
    width: 159.6px;
    height: 86.8px;
  }
  .header-col {
    grid-gap: 40px;
  }
  .header-col:first-of-type {
    grid-gap: 52px;
  }
  .header-logo {
    height: 62px;
    width: 114px;
  }
  .header-logo img {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
  }
  .header-lang-btn {
    grid-gap: -2px;
  }
  .header-lang-btn .header-text {
    margin-right: -2px;
  }
  .header-lang-btn svg {
    width: 24px;
    height: 24px;
  }
  .header-lang-dropdown {
    padding: 4px 0;
    border-radius: 3px;
  }
  .header-lang-option {
    padding: 4px 10px;
  }
  .header-catalog {
    padding: 22px 0;
  }
  .header-catalog-wrapper .header-link .header-text {
    margin-right: -2px;
  }
  .header-catalog-wrapper .header-link svg {
    height: 24px;
    width: 24px;
  }
  .header-catalog-item .categories-preview {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
  .header-catalog-item .categories-title {
    margin-bottom: 4px;
  }
}
@media (max-width: 992px) {
  .header.big .header-logo {
    width: 86.18px;
  }
  .header.big .header-logo img {
    width: 86.18px;
    height: 46.87px;
  }
  .header-col {
    grid-gap: 30px;
  }
  .header-col:first-of-type {
    grid-gap: 36px;
  }
  .header-logo {
    width: 86.18px;
    height: 46.87px;
  }
  .header-logo img {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
  }
  .header-lang-btn {
    grid-gap: -2px;
  }
  .header-lang-btn .header-text {
    margin-right: -2px;
  }
  .header-lang-btn svg {
    width: 24px;
    height: 24px;
  }
  .header-lang-dropdown {
    padding: 4px 0;
    border-radius: 3px;
  }
  .header-lang-option {
    padding: 4px 10px;
  }
}
@media (max-width: 825px) {
  .header-col.right {
    display: none;
  }
  .header-navs {
    display: none !important;
  }
  .header-burger {
    display: block;
  }
  .header-menu {
    display: block;
    position: fixed;
    right: -310px;
    top: 0;
    z-index: 1002;
    width: 300px;
    height: 100vh;
    flex-direction: column-reverse;
    justify-content: start;
    align-items: flex-start;
    padding: 30px 10px;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s linear;
  }
  .header-menu.show {
    right: 0px;
  }
  .header-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    margin-bottom: 30px;
  }
  .header-menu-top-navs {
    display: none;
  }
  .header-menu .header-link {
    padding: 8px 20px;
    margin-bottom: 14px;
  }
  .header-menu .header-link .name {
    display: inline;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header .desktop {
    display: none;
  }
  .header.big .header-logo {
    width: 86.18px;
  }
  .header.big .header-logo img {
    width: 86.18px;
    height: 46.87px;
  }
  .header-col {
    grid-gap: 30px;
  }
  .header-col:first-of-type {
    grid-gap: 36px;
  }
  .header-logo {
    width: 86.18px;
    height: 46.87px;
  }
  .header-logo img {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  }
  .header-lang-btn {
    grid-gap: -2px;
  }
  .header-lang-btn .header-text {
    margin-right: -2px;
  }
  .header-lang-btn svg {
    width: 24px;
    height: 24px;
  }
  .header-lang-dropdown {
    padding: 4px 0;
    border-radius: 3px;
  }
  .header-lang-option {
    padding: 4px 10px;
  }
}
@media (max-width: 670px) {
  .header-navs {
    display: none !important;
  }
  .header-menu .top-navs {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #E1E1E1;
  }
}
@media (max-width: 576px) {
  .header-logo img {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
  }
}

.likesDropDown-item {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-gap: 14px;
  margin-bottom: 14px;
}
.likesDropDown-item:hover .likesDropDown-title {
  text-decoration: underline;
}
.likesDropDown-preview {
  padding-bottom: 100%;
  background: #F0ECE7;
  border-radius: 15px;
  position: relative;
}
.likesDropDown-preview img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.likesDropDown-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.likesDropDown-category {
  display: flex;
  justify-content: space-between;
}
.likesDropDown-category-name {
  font-weight: 500;
  font-size: 12px;
  color: #BCBCBC;
}
.likesDropDown-rating {
  display: flex;
  align-items: center;
  grid-gap: 2px;
}
.likesDropDown-rating .icon {
  display: block;
  height: 12px;
  width: 12px;
}
.likesDropDown-rating .icon svg {
  display: block;
  height: 12px;
  width: 12px;
}
.likesDropDown-rating span {
  font-weight: 500;
  font-size: 12px;
  color: #D0D0D0;
}

.cartDropDown-top {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 14px;
  margin-bottom: 14px;
}
.cartDropDown-top:hover .cartDropDown-top-title {
  text-decoration: underline;
}
.cartDropDown-top-preview {
  padding-bottom: 100%;
  background: #F0ECE7;
  border-radius: 15px;
  position: relative;
}
.cartDropDown-top-preview img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.cartDropDown-top-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cartDropDown-top-category {
  display: flex;
  justify-content: space-between;
}
.cartDropDown-top-category-name {
  font-weight: 500;
  font-size: 12px;
  color: #BCBCBC;
}
.cartDropDown-top-rating {
  display: flex;
  align-items: center;
  grid-gap: 2px;
}
.cartDropDown-top-rating .icon {
  display: block;
  height: 12px;
  width: 12px;
}
.cartDropDown-top-rating .icon svg {
  display: block;
  height: 12px;
  width: 12px;
}
.cartDropDown-top-rating span {
  font-weight: 500;
  font-size: 12px;
  color: #D0D0D0;
}
.cartDropDown-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cartDropDown-bottom-right {
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
}
.cartDropDown-bottom-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cartDropDown-bottom-price-soloPrice {
  font-size: 12px;
  font-weight: 400;
  color: #B7B7B7;
  margin-bottom: 4px;
}
.cartDropDown-bottom-price-old {
  font-weight: 400;
  font-size: 14px;
  color: #B7B7B7;
  margin-bottom: 1px;
  position: relative;
}
.cartDropDown-bottom-price-old::after {
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: 0px;
  position: absolute;
  left: -5px;
  top: 9px;
  border: 0.7px solid #B7B7B7;
}
.cartDropDown-bottom-price-title {
  font-weight: 500;
  font-size: 18px;
}
.cartDropDown-bottom-delete {
  display: block;
  height: 18px;
  width: 18px;
}
.cartDropDown-bottom-delete svg {
  display: block;
  height: 18px !important;
  width: 18px !important;
}

.footer {
  padding: 40px 0 60px;
  background-color: #212121;
}
.footer-inner {
  display: grid;
  grid-template-columns: 40% 30% 25%;
  justify-content: space-between;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: block;
  height: 62px;
  width: 114px;
  margin-bottom: 20px;
}
.footer-text {
  color: white;
  margin-bottom: 12px;
}
.footer-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 16px;
  color: white;
}
@media (max-width: 1200px) {
  .footer {
    padding: 30px 0 50px;
  }
  .footer-inner {
    grid-template-columns: 40% 30% 25%;
  }
  .footer-logo {
    width: 91.2px;
    height: 49.6px;
    margin-bottom: 20px;
  }
  .footer-text {
    margin-bottom: 12px;
  }
  .footer-link {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0px;
  }
  .footer-inner {
    grid-template-columns: 70% 30%;
    grid-gap: 30px 0;
  }
  .footer-inner .footer-col:last-child {
    grid-column: 1/3;
  }
  .footer-logo {
    width: 91.2px;
    height: 49.6px;
    margin-bottom: 20px;
  }
  .footer-text {
    margin-bottom: 12px;
  }
  .footer-link {
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
  .footer-inner .footer-col:last-child {
    grid-column: 1/2;
  }
}
@media (max-width: 380px) {
  .footer-logo {
    width: 91.2px;
    height: 49.6px;
    margin-bottom: 20px;
  }
  .footer-text {
    margin-bottom: 12px;
  }
  .footer-link {
    margin-bottom: 12px;
  }
}

.nav {
  display: flex;
  grid-gap: 95px;
}
.nav-link {
  min-width: 50px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  background-color: #4094F7;
  transition: all 0.4s ease-in-out;
}
.nav-link:hover span {
  color: #4094F7;
}
.nav-link:hover::after {
  opacity: 1;
  background-color: rgba(64, 148, 247, 0.3);
}
.nav-link:hover svg {
  fill: #4094F7 !important;
}
.nav-link.active span {
  font-weight: 500;
  color: #212121;
}
.nav-link.active::after {
  opacity: 1;
  background-color: #4094F7 !important;
}
.nav-link span {
  font-weight: 400;
  font-size: 18px;
  color: #575F76;
  transition: all 0.3s ease-in-out;
}

.form-inputs {
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
  margin-bottom: 40px;
}
.form-item {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.form-label {
  font-weight: 400;
  font-size: 16px;
}
.form-label span.text {
  color: #212121 !important;
}
.form-label span {
  color: #F95050;
}
.form-checkboxlist {
  display: inline-flex;
  grid-gap: 15px;
}
.form-itemsCount {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 16px;
}
.form-footer {
  display: flex;
  grid-gap: 25px;
}

input,
textarea {
  width: 100%;
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  padding: 14px 12px;
  border: 1.2px solid #ADADAD;
  border-radius: 3px;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 16px;
}
input::placeholder,
textarea::placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 16px;
}
input:focus,
textarea:focus {
  border-color: #4094F7 !important;
}

textarea {
  min-height: 135px;
}

.inputCheckbox {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.inputCheckbox input[type=checkbox], .inputCheckbox input[type=radio] {
  display: block;
  height: 28px;
  width: 28px;
  cursor: pointer;
  border: 1px solid #EAEAEA;
  box-shadow: none;
}
.inputCheckbox label {
  font-weight: 400;
  font-size: 16px;
  color: #212121;
  cursor: pointer;
}

.inputDropFile {
  max-width: 875px;
}
.inputDropFile input[type=file] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.inputDropFile .drop-file {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
  margin-bottom: 5px;
  border-radius: 10px;
  border: 1px solid #EAEAEA;
}
.inputDropFile .drop-file p.text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: rgba(64, 148, 247, 0.3);
}
.inputDropFile label {
  display: inline-flex;
  align-items: center;
  grid-gap: 10px;
  padding: 7px 20px;
  background: rgba(64, 148, 247, 0.1);
  border-radius: 10px;
}
.inputDropFile label svg {
  display: block;
  height: 28px;
  width: 28px;
  fill: transparent;
}
.inputDropFile label p.text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #4094F7;
}

.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.1s ease-in-out;
}
.modal-back {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(33, 33, 33, 0.5);
  transition: opacity 0.3s ease-in-out, visibility 0.4s ease-in-out;
}
.modal-back.show {
  opacity: 1;
  visibility: visible;
}
.modal .slick-list {
  padding: 0px !important;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0.1s ease-in-out;
}
.modal.show .modal-inner {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.modal.show .modal-top {
  top: 25px;
}
.modal .wrapper {
  display: flex;
  justify-content: center;
}
.modal-inner {
  width: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 120%;
  z-index: 2;
  transform: translateY(0);
  padding: 200px 20px 100px;
  overflow-y: auto;
  transition: top 0.9s ease-in-out, transform 0.9s ease-in-out, opacity 0.4s ease-in-out;
}
.modal-inner.center {
  display: flex;
  justify-content: center;
}
.modal-slide {
  position: relative;
  padding: 0 100px;
  opacity: 0.4;
  transition: all 0.7s ease-in-out;
}
.modal-slide.slick-active {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.modal-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.modal-card {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 100;
  cursor: pointer;
  padding: 24px;
  border-radius: 10px;
  background-color: white;
}
.modal-top {
  position: absolute;
  right: 25px;
  top: -100px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  grid-gap: 40px;
  transition: top 0.3s ease-in-out;
}
.modal-exit-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.modal-exit img {
  display: block;
  height: 32px;
  width: 32px;
  fill: #B7B7B7;
  transition: all 0.3s ease-in-out;
}
.modal-exit:hover img {
  transform: scale(1.2);
}
.modal-link {
  display: flex;
  align-items: center;
  grid-gap: 4px;
}
.modal-link a {
  color: #FFFFFF;
}
.modal-link a::after {
  border-color: #FFFFFF;
}
.modal-link img {
  display: block;
  height: 14px;
  width: 14px;
  position: relative;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.modal-link:hover img {
  right: -4px;
}
.modal .slick-arrow {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.modal .slick-arrow::before {
  content: "";
  display: block;
  height: 32px;
  width: 32px;
  opacity: 1 !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/arrow-light-right-with-circle-bg.svg") center no-repeat;
  background-size: cover;
}
.modal .slick-arrow.slick-next {
  right: 40px;
}
.modal .slick-arrow.slick-prev {
  left: 40px;
}
.modal .slick-arrow.slick-prev::before {
  background: url("../images/arrow-light-left-with-circle-bg.svg") center no-repeat;
  background-size: cover;
}
.modal .slick-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
}
.modal .slick-dots li.slick-active button {
  background-color: white;
}
.modal .slick-dots button {
  display: block;
  height: 10px;
  width: 10px;
  padding: 0px;
  color: transparent !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}
.modal .slick-dots button::before {
  color: transparent !important;
}
@media (max-width: 992px) {
  .modal-inner {
    padding: 180px 20px 80px;
  }
  .modal-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .modal-inner {
    padding: 160px 20px 60px;
  }
  .modal-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .modal-slide {
    padding: 0 20px;
  }
  .modal-inner {
    padding: 140px 20px 40px;
  }
  .modal-title {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .modal-inner {
    padding: 120px 20px 40px;
  }
}

button span {
  transition: all 0.2s linear;
}
button.filled, button.outlined {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  padding: 14px 30px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
button.filled.small, button.outlined.small {
  min-width: 60px;
  padding: 9px 20px 10px;
  border-radius: 30px;
}
button.filled.small.gray, button.outlined.small.gray {
  color: #B7B7B7;
}
button.filled .text, button.outlined .text {
  font-weight: 400;
  font-size: 16px;
}
button.filled {
  color: white;
  font-weight: 500;
  background-color: #4094F7;
  position: relative;
  transition: all 0.2s linear;
}
button.filled .loading {
  content: "";
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s linear;
}
button.filled .loading::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzExNjRfNDQwOSkiPgo8cGF0aCBkPSJNMTcuNjQ5MyA2LjM0OTk5QzE2LjAxOTMgNC43MTk5OSAxMy43MDkzIDMuNzc5OTkgMTEuMTY5MyA0LjAzOTk5QzcuNDk5MjkgNC40MDk5OSA0LjQ3OTI5IDcuMzg5OTkgNC4wNjkyOSAxMS4wNkMzLjUxOTI5IDE1LjkxIDcuMjY5MjkgMjAgMTEuOTk5MyAyMEMxNS4xODkzIDIwIDE3LjkyOTMgMTguMTMgMTkuMjA5MyAxNS40NEMxOS41MjkzIDE0Ljc3IDE5LjA0OTMgMTQgMTguMzA5MyAxNEMxNy45MzkzIDE0IDE3LjU4OTMgMTQuMiAxNy40MjkzIDE0LjUzQzE2LjI5OTMgMTYuOTYgMTMuNTg5MyAxOC41IDEwLjYyOTMgMTcuODRDOC40MDkyOSAxNy4zNSA2LjYxOTI5IDE1LjU0IDYuMTQ5MjkgMTMuMzJDNS4zMDkyOSA5LjQzOTk5IDguMjU5MjkgNS45OTk5OSAxMS45OTkzIDUuOTk5OTlDMTMuNjU5MyA1Ljk5OTk5IDE1LjEzOTMgNi42ODk5OSAxNi4yMTkzIDcuNzc5OTlMMTQuNzA5MyA5LjI4OTk5QzE0LjA3OTMgOS45MTk5OSAxNC41MTkzIDExIDE1LjQwOTMgMTFIMTguOTk5M0MxOS41NDkzIDExIDE5Ljk5OTMgMTAuNTUgMTkuOTk5MyA5Ljk5OTk5VjYuNDA5OTlDMTkuOTk5MyA1LjUxOTk5IDE4LjkxOTMgNS4wNjk5OSAxOC4yODkzIDUuNjk5OTlMMTcuNjQ5MyA2LjM0OTk5VjYuMzQ5OTlaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzExNjRfNDQwOSI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation-name: spin;
  animation-duration: 800ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
button.filled::after {
  content: "";
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzUiIHZpZXdCb3g9IjAgMCAzNSAzNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzExNjNfNDQwMSkiPgo8cGF0aCBkPSJNMTMuMTI1MSAyMy42MjVMOC4wMjA5NiAxOC41MjA4QzcuNDUyMjEgMTcuOTUyMSA2LjU0ODA1IDE3Ljk1MjEgNS45NzkzIDE4LjUyMDhDNS40MTA1NSAxOS4wODk2IDUuNDEwNTUgMTkuOTkzNyA1Ljk3OTMgMjAuNTYyNUwxMi4wODk3IDI2LjY3MjlDMTIuNjU4NSAyNy4yNDE3IDEzLjU3NzIgMjcuMjQxNyAxNC4xNDYgMjYuNjcyOUwyOS42MDQzIDExLjIyOTJDMzAuMTczIDEwLjY2MDQgMzAuMTczIDkuNzU2MjQgMjkuNjA0MyA5LjE4NzQ5QzI5LjAzNTUgOC42MTg3NCAyOC4xMzE0IDguNjE4NzQgMjcuNTYyNiA5LjE4NzQ5TDEzLjEyNTEgMjMuNjI1WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTYzXzQ0MDEiPgo8cmVjdCB3aWR0aD0iMzUiIGhlaWdodD0iMzUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.2s linear;
}
button.filled .text {
  color: white;
  font-weight: 500;
}
button.filled.green {
  background-color: #3BC963;
}
button.filled.green:hover {
  background-color: #34bc5a;
}
button.filled.gray {
  color: #575F76;
  background-color: rgba(215, 216, 225, 0.5);
}
button.filled.gray:hover {
  background-color: rgba(183, 183, 183, 0.3);
}
button.filled.gray.small {
  color: #B7B7B7;
  border-radius: 5px;
}
button.filled.successfully {
  background-color: #3BC963;
}
button.filled.successfully::after {
  opacity: 1;
}
button.filled.successfully span {
  color: transparent;
}
button.filled.loading {
  background-color: rgba(64, 148, 247, 0.6);
  pointer-events: none;
}
button.filled.loading .loading {
  opacity: 1;
}
button.filled.loading span {
  color: transparent;
}
button.outlined {
  color: #575F76;
  border: 1px solid rgba(215, 216, 225, 0.5);
}
button.outlined:hover {
  background-color: rgba(106, 75, 255, 0.1);
}
button.outlined.dark {
  border-color: #212121;
}
button.outlined.small.active {
  color: white;
  background-color: #4094F7;
}
button.have-icon {
  min-width: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
button.have-icon svg {
  display: block;
  height: 24px;
  width: 24px;
}
button.like {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3BC963;
  border-radius: 6px;
}
button.like svg {
  display: block;
  height: 24px;
  width: 24px;
  fill: transparent;
  stroke: #3BC963;
  transition: fill 0.3s ease-in-out;
}
button.like.liked svg {
  fill: #3BC963;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.dropdown {
  height: 50px;
  width: 100%;
  min-width: 310px;
  max-width: 480px;
  border-radius: 10px;
  background: white;
  position: relative;
}
.dropdown::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 24px;
  z-index: 2;
  transform: translateY(-50%);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5IDlMMTIgMTZMNSA5IiBzdHJva2U9IiM5MjkyOUQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  pointer-events: none;
  transition: all 0.6s ease-in-out;
}
.dropdown input {
  width: 100%;
  height: 100%;
  padding: 12px 13px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 10px;
  border: 1px solid rgba(215, 216, 225, 0.5);
}
.dropdown input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #B7B7B7;
}
.dropdown input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #B7B7B7;
}
.dropdown .options {
  width: 100%;
  max-height: 400px;
  cursor: pointer;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: 60px;
  z-index: 2;
  transition: all 0.7s ease;
  transform: translateY(-50px);
  background: white;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.dropdown .options .option {
  cursor: pointer;
  color: #575F76;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.dropdown .options .option:not(:last-of-type) {
  margin-bottom: 8px;
}
.dropdown .options .option:hover {
  color: white;
  background: rgba(106, 75, 255, 0.5);
}
.dropdown.opened .options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown.opened::before {
  top: 12px;
  transform: rotateX(180deg);
}

.line {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.line::after {
  content: "";
  display: block;
  height: 0;
  width: 80%;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  border-bottom: 1.6px solid #212121;
  transition: all 0.3s ease-in-out;
}
.line:hover::after {
  opacity: 1;
  width: 100%;
}
.line.white::after {
  border-color: white;
}

.slider-block {
  display: flex;
  overflow-x: auto;
  grid-gap: 20px;
  margin: 0 -40px;
  padding: 0 40px;
}
@media (max-width: 1200px) {
  .slider-block {
    margin: 0 -30px;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .slider-block {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
.orderStatus {
  display: inline-flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  grid-gap: 6px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
.orderStatus::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.orderStatus.wait {
  background: #F8F9FC;
  color: #B9B9B9;
}
.orderStatus.wait::before {
  display: none;
}
.orderStatus.finish {
  background: #ECFDF3;
  color: #027A48;
}
.orderStatus.finish::before {
  background-color: #027A48;
}
.orderStatus.cancel {
  background: #F2F4F7;
  color: #344054;
}
.orderStatus.cancel::before {
  background-color: #344054;
}
.orderStatus.progres {
  background-color: #EFF8FF;
  color: #175CD3;
}
.orderStatus.progres::before {
  background-color: #175CD3;
}
@media (max-width: 1200px) {
  .orderStatus {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 992px) {
  .orderStatus {
    padding: 2px 6px;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .orderStatus {
    font-size: 12px;
    line-height: 16px;
    padding: 2px 6px;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .orderStatus {
    font-size: 10px;
    line-height: 14px;
    padding: 2px 4px;
    border-radius: 10px;
  }
}
@media (max-width: 380px) {
  .orderStatus {
    font-size: 10px;
    line-height: 14px;
    padding: 2px 4px;
    border-radius: 10px;
  }
}

.countControl {
  display: flex;
  gap: 5px;
}
.countControl-title {
  margin-bottom: 3px;
}
.countControl-btn, .countControl-count {
  width: 26px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 3px;
  border: 1px solid #E0E0E0;
}
.countControl-count {
  width: 44px;
}

.main .header {
  margin-bottom: 0px !important;
}

.intro {
  margin: 0px !important;
}
.intro-slider {
  position: relative;
  overflow: hidden;
}
.intro-slider .intro-slide:first-of-type {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.intro-slider .slick-arrow {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.intro-slider .slick-arrow::before {
  content: "";
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/arrow-right-with-circle-bg.svg") center no-repeat;
  background-size: cover;
}
.intro-slider .slick-arrow.slick-next {
  right: 40px;
}
.intro-slider .slick-arrow.slick-prev {
  left: 40px;
}
.intro-slider .slick-arrow.slick-prev::before {
  background: url("../images/arrow-left-with-circle-bg.svg") center no-repeat;
  background-size: cover;
}
.intro-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
}
.intro-slider .slick-dots li.slick-active button {
  background-color: white;
}
.intro-slider .slick-dots button {
  display: block;
  height: 10px;
  width: 10px;
  padding: 0px;
  color: transparent !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}
.intro-slider .slick-dots button::before {
  color: transparent !important;
}
.intro-slide-inner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 38%;
}
.intro-slide-inner.tablet, .intro-slide-inner.mobile {
  display: none;
}
.intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
}
.intro-title {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.4;
  color: white;
  margin-bottom: 24px;
}
.intro-text {
  color: white;
  margin-bottom: 40px;
}
.intro-bottom {
  display: flex;
  grid-gap: 40px;
}
.intro-btn {
  padding: 16px 38px;
  border: 1.4px solid white;
  border-radius: 6px;
  background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: white;
  transition: all 0.3s ease-in-out;
}
.intro-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.intro-contacts {
  display: flex;
  align-items: center;
  grid-gap: 18px;
}
.intro-contacts-text {
  color: white;
}
.intro-contacts .line {
  height: 100%;
  width: 2px;
  background-color: white;
}
.intro-preview {
  height: 100%;
}
.intro-preview img {
  height: 100%;
}
@media (max-width: 1200px) {
  .intro-slider .slick-arrow::before {
    height: 30px;
    width: 30px;
  }
  .intro-slider .slick-arrow.slick-next {
    right: 20px;
  }
  .intro-slider .slick-arrow.slick-prev {
    left: 20px;
  }
  .intro-slider .slick-dots {
    bottom: 18px;
  }
  .intro-slider .slick-dots button {
    height: 10px;
    width: 10px;
  }
  .intro-inner {
    padding: 40px 30px;
  }
  .intro-title {
    font-size: 44px;
    margin-bottom: 22px;
  }
  .intro-text {
    margin-bottom: 36px;
  }
  .intro-bottom {
    grid-gap: 30px;
  }
  .intro-btn {
    padding: 14px 34px;
  }
  .intro-contacts {
    grid-gap: 18px;
  }
  .intro-contacts .line {
    width: 2px;
  }
}
@media (max-width: 992px) {
  .intro-slider .slick-arrow::before {
    height: 28px;
    width: 28px;
  }
  .intro-slider .slick-arrow.slick-next {
    right: 28px;
  }
  .intro-slider .slick-arrow.slick-prev {
    left: 28px;
  }
  .intro-slider .slick-dots {
    bottom: 12px;
  }
  .intro-slider .slick-dots button {
    height: 8px;
    width: 8px;
  }
  .intro-inner {
    padding: 50px 30px;
  }
  .intro-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .intro-text {
    margin-bottom: 32px;
  }
  .intro-bottom {
    grid-gap: 28px;
  }
  .intro-btn {
    padding: 12px 30px;
  }
  .intro-contacts {
    grid-gap: 16px;
  }
  .intro-contacts .line {
    width: 1.2px;
  }
}
@media (max-width: 768px) {
  .intro-slider .slick-arrow {
    display: none !important;
  }
  .intro-slider .slick-dots {
    bottom: 6px;
  }
  .intro-slider .slick-dots button {
    height: 8px;
    width: 8px;
  }
  /* .intro-slide-inner {
    padding-bottom: 50%;
  } */
  /* .intro-slide-inner.tablet {
    display: block;
  } */
  /* .intro-slide-inner.desktop, .intro-slide-inner.mobile {
    display: none;
  } */
  .intro-inner {
    padding: 30px 20px 50px;
  }
  .intro-title {
    font-size: 36px;
    margin-bottom: 18px;
  }
  .intro-text {
    margin-bottom: 28px;
  }
  .intro-bottom {
    grid-gap: 28px;
  }
  .intro-btn {
    padding: 12px 30px;
  }
  .intro-contacts {
    grid-gap: 16px;
  }
  .intro-contacts .line {
    width: 1.2px;
  }
  .intro-preview {
    display: none;
  }
}
@media (max-width: 576px) {
  .intro-slider .slick-arrow {
    display: none !important;
  }
  .intro-slider .slick-dots {
    bottom: 2px;
  }
  .intro-slider .slick-dots button {
    height: 8px;
    width: 8px;
  }
  /* .intro-slide-inner {
    padding-bottom: 65%;
  } */
  /* .intro-slide-inner.mobile {
    display: block;
  } */
  /* .intro-slide-inner.desktop, .intro-slide-inner.tablet {
    display: none;
  } */
  .intro-inner {
    padding: 30px 10px 40px;
  }
  .intro-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .intro-text {
    margin-bottom: 24px;
  }
  .intro-bottom {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 20px;
  }
  .intro-btn {
    padding: 12px 30px;
  }
  .intro-contacts {
    grid-gap: 14px;
  }
  .intro-contacts .line {
    width: 1.2px;
  }
  .intro-preview {
    display: none;
  }
}
.aboutUs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 40px;
}
.aboutUs-photo {
  width: 485px;
  height: 405px;
}
.aboutUs p {
  margin-bottom: 10px;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .aboutUs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
  }
  .aboutUs-photo {
    width: 430px;
    height: 360px;
  }
  .aboutUs p {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .aboutUs-inner {
    grid-gap: 30px;
  }
  .aboutUs-photo {
    width: 318px;
    height: 264px;
  }
  .aboutUs p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .aboutUs-inner {
    flex-direction: column;
    grid-gap: 30px;
  }
  .aboutUs-photo {
    width: 100%;
    height: 280px;
  }
  .aboutUs p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.advantages {
  background: url("../images/advantages-bg.jpg") right no-repeat;
  background-size: cover;
}
.advantages-inner {
  padding: 75px 0 90px;
}
.advantages .wrapper-title {
  color: white;
}
.advantages-item {
  display: flex;
  grid-gap: 10px;
  margin-bottom: 14px;
}
.advantages-item svg {
  display: block;
  height: 24px;
  width: 24px;
}
.advantages-text {
  font-size: 18px;
  padding-top: 4px;
  color: white;
}
@media (max-width: 1200px) {
  .advantages-inner {
    padding: 60px 0 70px;
  }
  .advantages-item {
    grid-gap: 10px;
    margin-bottom: 14px;
  }
  .advantages-item svg {
    height: 24px;
    width: 24px;
  }
  .advantages-text {
    font-size: 18px;
    padding-top: 4px;
  }
}
@media (max-width: 992px) {
  .advantages-inner {
    padding: 50px 0 60px;
  }
  .advantages-item {
    grid-gap: 10px;
    margin-bottom: 12px;
  }
  .advantages-item svg {
    height: 20px;
    width: 20px;
  }
  .advantages-text {
    font-size: 16px;
    padding-top: 3px;
  }
}
.gallery-inner {
  display: flex;
  align-items: center;
  grid-gap: 60px;
}
.gallery-photos {
  width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2px;
}
.gallery-photo {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.gallery-photo .gallery-link-toPage {
  display: none;
}
.gallery-photo:last-child .gallery-btn {
  display: none;
}
.gallery-photo:last-child .gallery-link-toPage {
  display: flex;
  opacity: 1;
  background-color: rgba(33, 33, 33, 0.7);
}
.gallery-btn, .gallery-link-toPage {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background-color: rgba(33, 33, 33, 0.4);
  transition: opacity 0.3s ease-in-out;
}
.gallery-btn:hover, .gallery-link-toPage:hover {
  opacity: 1;
}
.gallery-btn img {
  display: block;
  height: 30px;
  width: 40px;
  transition: all 0.3s ease-in-out;
}
.gallery-btn:hover img {
  height: 55px;
  width: 55px;
}
.gallery-col .wrapper-title {
  margin-bottom: 14px;
}
.gallery-col p {
  margin-bottom: 50px;
}
.gallery-link {
  font-weight: 500;
  font-size: 28px;
  color: #212121;
}
.gallery-link-toPage {
  grid-gap: 10px;
  flex-direction: column;
  align-items: center;
}
.gallery-link-toPage p {
  font-size: 22px;
  color: white;
}
.gallery-link-toPage img {
  display: block;
  height: 40px;
  width: 40px;
}
.gallery-link-toPage-withArrow {
  display: inline-flex;
  align-items: center;
  grid-gap: 3px;
  font-weight: 500;
  font-size: 16px;
  color: #4094F7;
  margin-bottom: 20px;
}
.gallery-link-toPage-withArrow img {
  display: block;
  height: 15px;
  width: 15px;
  position: relative;
  right: 0;
  transition: right 0.3s linear;
}
.gallery-link-toPage-withArrow:hover img {
  right: -4px;
}
@media (max-width: 1200px) {
  .gallery-inner {
    grid-gap: 40px;
  }
  .gallery-photos {
    width: 720px;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-col .wrapper-title {
    margin-bottom: 14px;
  }
  .gallery-col p {
    margin-bottom: 50px;
  }
  .gallery-link {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .gallery-inner {
    grid-gap: 30px;
  }
  .gallery-photos {
    width: 670px;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-col .wrapper-title {
    margin-bottom: 14px;
  }
  .gallery-col p {
    margin-bottom: 40px;
  }
  .gallery-link {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .gallery-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .gallery-photos {
    grid-row: 2/3;
    width: 100%;
    max-width: 580px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
  }
  .gallery-col .wrapper-title {
    margin-bottom: 14px;
  }
  .gallery-col p {
    margin-bottom: 20px;
  }
  .gallery-link {
    font-size: 22px;
  }
  .gallery-link-toPage {
    grid-gap: 10px;
  }
  .gallery-link-toPage p {
    font-size: 20px;
  }
  .gallery-link-toPage img {
    height: 30px;
    width: 30px;
  }
  .gallery-col:last-child {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .gallery-inner {
    grid-gap: 24px;
  }
  .gallery-col .wrapper-title {
    margin-bottom: 14px;
  }
  .gallery-col p {
    margin-bottom: 14px;
  }
  .gallery-link {
    font-size: 20px;
  }
  .gallery-link-toPage {
    grid-gap: 8px;
  }
  .gallery-link-toPage p {
    font-size: 18px;
  }
  .gallery-link-toPage img {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 380px) {
  .gallery-link-toPage {
    grid-gap: 8px;
  }
  .gallery-link-toPage p {
    font-size: 16px;
  }
  .gallery-link-toPage img {
    height: 24px;
    width: 24px;
  }
}

.review-photos {
  display: grid;
  margin-bottom: 22px;
  background-color: rgba(0, 0, 0, 0.05);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 16px;
}
.review-photo {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.review-authorBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.review-author {
  display: flex;
  align-items: center;
  grid-gap: 14px;
}
.review-author-avatar {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.review-author-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #212121;
}
.review-rating-stars {
  display: flex;
  grid-gap: 12px;
}
.review-rating-stars img {
  display: block;
  height: 16px !important;
  width: 16px !important;
}
@media (max-width: 1200px) {
  .review-photos {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 992px) {
  .review-photos {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
@media (max-width: 768px) {
  .review-photos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 8px;
  }
}
@media (max-width: 576px) {
  .review-photos {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 6px;
  }
}
@media (max-width: 380px) {
  .review-photos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    grid-gap: 4px;
  }
}

.aboutSafe .wrapper-header-withSb {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aboutSafe .wrapper-title, .aboutSafe .wrapper-subtitle {
  text-align: center;
}
.aboutSafe .wrapper-subtitle {
  max-width: 600px;
  margin-bottom: 12px;
}
.aboutSafe-inner {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 420px;
  grid-gap: 60px;
}
.aboutSafe-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 48px 65px;
}
.aboutSafe-preview {
  background-color: #EAEAEA;
}
.aboutSafe-item-content {
  display: flex;
  align-items: center;
  grid-gap: 14px;
}
.aboutSafe-item-icon {
  height: 50px;
  min-width: 50px;
  width: 50px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.aboutSafe-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.aboutSafe-item-description {
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .aboutSafe-inner {
    grid-template-columns: 1fr 360px;
    grid-gap: 40px;
  }
  .aboutSafe-content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
  .aboutSafe-item-icon {
    height: 40px;
    min-width: 40px;
    width: 40px;
    margin-bottom: 14px;
  }
  .aboutSafe-item-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 992px) {
  .aboutSafe-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .aboutSafe-inner {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .aboutSafe-content {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
@media (max-width: 576px) {
  .aboutSafe-inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .aboutSafe-content {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.contacts-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contacts-block.top {
  padding-bottom: 45px;
  margin-bottom: 40px;
  border-bottom: 1px solid #DADADA;
}
.contacts-data p,
.contacts-data a {
  margin-bottom: 14px;
}
.contacts-link p {
  margin-bottom: 0px;
}
.contacts-linkSn-list {
  display: flex;
  grid-gap: 20px;
}
.contacts-linkSn img {
  display: block;
  height: 28px;
  width: 28px;
}
.contacts-form-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
.contacts-form textarea {
  margin-bottom: 20px;
}
.contacts-map {
  height: 335px;
  background-color: #EAEAEA;
}
.contacts-map-link {
  display: inline-flex;
  align-items: center;
  grid-gap: 6px;
  margin-bottom: 10px;
}
.contacts-map-link img {
  display: block;
  height: 18px;
  width: 18px;
}

@media (max-width: 1200px) {
  .contacts-block {
    grid-template-columns: 1fr 500px;
  }
  .contacts-map {
    height: 335px;
  }
}
@media (max-width: 992px) {
  .contacts-block {
    grid-template-columns: 1fr 400px;
  }
  .contacts-form-top {
    grid-template-columns: repeat(1, 1fr);
  }
  .contacts-map {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .contacts-data p, .contacts-data a {
    margin-bottom: 10px;
  }
  .contacts-form-top {
    grid-template-columns: repeat(1, 1fr);
  }
  .contacts-map {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .contacts-block {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 576px) {
  .contacts-form-top {
    display: flex;
    flex-direction: column;
  }
  .contacts-form-top-input {
    margin-bottom: 10px;
  }
  .contacts-link img {
    height: 14px;
    width: 14px;
  }
  .contacts-map {
    height: 180px;
  }
}
.deviceIntro-inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  grid-gap: 40px;
}
.deviceIntro-preview-big {
  padding-bottom: 100%;
  background-color: white;
  border: 1px solid #E7E7E7;
  margin-bottom: 10px;
  position: relative;
}
.deviceIntro-preview-big button.zoom {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  right: 3px;
  cursor: pointer;
  display: flex;
  justify-content: end;
  align-items: start;
}
.deviceIntro-preview-big button.zoom img {
  display: block;
  height: 48px;
  width: 48px;
  transition: all 0.3s ease-in-out;
}
.deviceIntro-preview-big button.zoom img:hover {
  height: 52px;
  width: 52px;
}
.deviceIntro-preview-item {
  height: 80px;
  width: 80px;
  border: 1px solid #E7E7E7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.deviceIntro-preview-item.big {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.deviceIntro-preview-item.big .img {
  height: 100%;
  width: auto;
}
.deviceIntro-preview-slider {
  display: flex;
  grid-gap: 16px;
}
.deviceIntro-preview-slider .slick-slide.slick-center .deviceIntro-preview-item {
  border-color: #4094F7;
}
.deviceIntro-content .countControl {
  margin-bottom: 18px;
}
.deviceIntro-content-locks-stars {
    display: flex;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.deviceIntro-content-locks-stars img {
    width: 18px !important;
    height: 18px !important;
}

.deviceIntro-categories {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  margin-bottom: 20px;
}
.deviceIntro-categories-item {
  font-size: 14px;
  color: #212121;
  padding: 0px 8px;
  background: #EEF0F2;
  border-radius: 6px;
}
.deviceIntro-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.deviceIntro-prices {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  grid-gap: 40px;
  margin-bottom: 25px;
}
.deviceIntro-prices-now {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #4094F7;
}
.deviceIntro-prices-old {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 1.4;
  color: #B7B7B7;
  position: relative;
}
.deviceIntro-prices-old::after {
  content: "";
  display: block;
  height: 1.8px;
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #B7B7B7;
}
.deviceIntro-content-btns {
  display: flex;
  grid-gap: 15px;
}
.deviceIntro-content-btns button {
  height: 52px;
}
.deviceIntro-content-btns button.filled {
  width: 315px;
}
.deviceIntro-content-btns button.favorite {
  height: 52px;
  width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.4px solid #212121;
  border-radius: 6px;
  position: relative;
  transition: all 0.2s linear;
}
.deviceIntro-content-btns button.favorite .text {
  display: none;
}
.deviceIntro-content-btns button.favorite img {
  display: block;
  width: 28px;
  height: 28px;
}
.deviceIntro-content-btns button.favorite img.white {
  display: none;
  transition: all 0.2s linear;
}
.deviceIntro-content-btns button.favorite.active {
  background-color: #FF6363;
  border-color: transparent;
}
.deviceIntro-content-btns button.favorite.active img {
  display: none;
}
.deviceIntro-content-btns button.favorite.active img.white {
  display: block !important;
}
.deviceIntro-content-btns button.favorite.active .text {
  color: white !important;
}
@media (max-width: 1200px) {
  .deviceIntro-inner {
    grid-template-columns: 440px 1fr;
  }
  .deviceIntro-preview-item {
    height: 70px;
    width: 70px;
  }
}
@media (max-width: 992px) {
  .deviceIntro-inner {
    grid-template-columns: 340px 1fr;
    grid-gap: 35px;
  }
  .deviceIntro-preview-item {
    height: 60px;
    width: 60px;
  }
  .deviceIntro-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .deviceIntro-prices {
    grid-gap: 30px;
    margin-bottom: 20px;
  }
  .deviceIntro-prices-now {
    font-size: 22px;
  }
  .deviceIntro-prices-old {
    font-size: 18px;
  }
  .deviceIntro-content-btns button.filled {
    width: 260px;
  }
}
@media (max-width: 768px) {
  .deviceIntro-inner {
    grid-template-columns: 280px 1fr;
    grid-gap: 30px;
  }
  .deviceIntro-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .deviceIntro-prices {
    grid-gap: 30px;
    margin-bottom: 20px;
  }
  .deviceIntro-prices-now {
    font-size: 22px;
  }
  .deviceIntro-prices-old {
    font-size: 18px;
  }
  .deviceIntro-content-btns {
    flex-direction: column;
  }
  .deviceIntro-content-btns button {
    width: 100%;
  }
  .deviceIntro-content-btns button.filled {
    width: 100%;
  }
  .deviceIntro-content-btns button.favorite {
    width: auto;
    grid-gap: 10px;
  }
  .deviceIntro-content-btns button.favorite .text {
    display: inline;
    font-size: 16px;
    color: #212121;
  }
}
@media (max-width: 576px) {
  .deviceIntro-inner {
    display: flex;
    flex-direction: column;
    grid-gap: 40px;
  }
  .deviceIntro-preview-item {
    height: 70px;
    width: 70px;
  }
}
@media (max-width: 380px) {
  .deviceIntro-preview-item {
    height: 60px;
    width: 60px;
  }
}

.devicePreviewModal-card {
  width: auto;
  min-width: auto;
  padding: 10px;
}
.devicePreviewModal-card img {
  height: 60vh;
}
@media (max-width: 768px) {
  .devicePreviewModal-card {
    width: 500px;
  }
  .devicePreviewModal-card img {
    height: auto;
  }
}
@media (max-width: 576px) {
  .devicePreviewModal-card {
    width: 350px;
  }
  .devicePreviewModal-card img {
    height: auto;
  }
}
@media (max-width: 380px) {
  .devicePreviewModal-card {
    width: 290px;
  }
  .devicePreviewModal-card img {
    height: auto;
  }
}

.deviceInfo-inner {
  display: grid;
  grid-template-columns: 1fr 370px;
  grid-gap: 50px;
  padding-top: 40px;
  border-top: 1px solid #DADADA;
}
.deviceInfo-main-titles {
  display: flex;
  justify-content: space-between;
}
.deviceInfo-main-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 32px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.deviceInfo-main-title.active {
  font-weight: 500;
}
.deviceInfo-main-title.active::after {
  background-color: #212121;
}
.deviceInfo-main-title:hover {
  color: #4094F7;
}
.deviceInfo-main-title:hover::after {
  background-color: #4094F7;
}
.deviceInfo-main-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -12px;
  left: 0;
  background-color: transparent;
}
.deviceInfo-description * {
  line-height: 1.2;
}
.deviceInfo-review {
  margin-bottom: 26px;
}
.deviceInfo-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.deviceInfo-review-author {
  display: flex;
  align-items: center;
  grid-gap: 18px;
}
.deviceInfo-review-author-avatar {
  height: 40px;
  width: 40px;
  background-color: #EAEAEA;
  border-radius: 50%;
}
.deviceInfo-review-author-name {
  font-weight: 500;
  font-size: 16px;
}
.deviceInfo-review-rating {
  display: flex;
  align-items: center;
  grid-gap: 18px;
}
.deviceInfo-review-rating-stars {
  display: flex;
  grid-gap: 4px;
}
.deviceInfo-review-rating-stars svg {
  display: block;
  height: 11px;
  width: 11px;
}
.deviceInfo-review-rating-date {
  color: #B7B7B7;
}
.deviceInfo-specifications-block {
  margin-bottom: 30px;
}
.deviceInfo-specifications-block:last-child {
  margin-bottom: 0;
}
.deviceInfo-specifications-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.deviceInfo-specifications-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.deviceInfo-specifications span {
  font-weight: 400;
  font-size: 16px;
}
.deviceInfo-specifications-dotsBox {
  flex: 1;
  position: relative;
}
.deviceInfo-specifications-dotsBox::after {
  content: "";
  background: url("../images/dot.svg") left;
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.deviceInfo-youtube {
  padding-bottom: 56.2%;
  margin-bottom: 22px;
  position: relative;
}
.deviceInfo-youtube iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
}
.deviceInfo-docs {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid #9E9E9E;
  border-radius: 3px;
  transition: all ease-in-out 0.3s;
}
.deviceInfo-docs svg {
  display: block;
  height: 38px;
  width: 38px;
  fill: #CDCDCD;
  transition: all ease-in-out 0.3s;
}
.deviceInfo-docs-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  transition: all ease-in-out 0.3s;
}
.deviceInfo-docs:hover {
  background-color: rgba(64, 148, 247, 0.05);
  border-color: #4094F7;
}
.deviceInfo-docs:hover svg {
  fill: #4094F7;
}
.deviceInfo-docs:hover .deviceInfo-docs-title {
  color: #4094F7;
}
@media (max-width: 1200px) {
  .deviceInfo-inner {
    grid-template-columns: 1fr 340px;
    grid-gap: 40px;
  }
}
@media (max-width: 992px) {
  .deviceInfo-inner {
    grid-template-columns: 1fr 290px;
    grid-gap: 28px;
  }
  .deviceInfo-main-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .deviceInfo-inner {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 576px) {
  .deviceInfo-inner {
    grid-gap: 30px;
  }
}
@media (max-width: 380px) {
  .deviceInfo-main-title {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

.deviceFeatures .wrapper-header-withSb {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deviceFeatures .wrapper-title {
  text-align: center;
}
.deviceFeatures .wrapper-subtitle {
  max-width: 800px;
  text-align: center;
}
.deviceFeatures-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
}
.deviceFeatures-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deviceFeatures-item-logo {
  height: 52px;
  width: 52px;
}
.deviceFeatures-item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.deviceFeatures-item-subtitle {
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 1200px) {
  .deviceFeatures-items {
    grid-gap: 50px;
  }
}
@media (max-width: 992px) {
  .deviceFeatures-items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
  .deviceFeatures-item-logo {
    height: 42px;
    width: 42px;
  }
}
@media (max-width: 576px) {
  .deviceFeatures-items {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .deviceFeatures-item-logo {
    height: 38px;
    width: 38px;
  }
}
.deviceFooter {
  width: 100%;
  padding: 70px 0;
  background: #2C2C2C;
}
.deviceFooter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deviceFooter-title {
  font-weight: 700;
  font-size: 38px;
  color: white;
  margin-bottom: 28px;
}
.deviceFooter-btn {
  width: 315px;
}
@media (max-width: 992px) {
  .deviceFooter {
    padding: 60px 0;
  }
  .deviceFooter-title {
    font-size: 32px;
    margin-bottom: 26px;
  }
  .deviceFooter-btn {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .deviceFooter {
    padding: 50px 0;
  }
  .deviceFooter-title {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .deviceFooter-btn {
    width: 260px;
  }
}
@media (max-width: 576px) {
  .deviceFooter {
    padding: 40px 0;
  }
  .deviceFooter-title {
    font-size: 26px;
    margin-bottom: 22px;
  }
  .deviceFooter-btn {
    width: auto;
  }
}
@media (max-width: 380px) {
  .deviceFooter-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.catalog-inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  grid-gap: 30px;
}
.catalog-filter-main {
  position: relative;
}
.catalog-filter-main-exit {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 10px;
  top: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0.4;
}
.catalog-filter-main-exit img {
  display: block;
  width: 30px;
  height: 30px;
}
.catalog-filter-btn {
  height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  padding: 20px;
  border: 1.4px solid #212121;
  border-radius: 6px;
  background-color: #212121;
}
.catalog-filter-btn img {
  display: block;
  height: 30px;
  width: 30px;
}
.catalog-filter-btn .text {
  display: inline;
  font-size: 16px;
  color: white;
}
.catalog-filter-title {
  font-weight: 500;
  font-size: 18px;
  color: #212121;
  margin-bottom: 14px;
}
.catalog-filter-nameIput {
  margin-bottom: 20px;
}
.catalog-filter-sale {
  margin-bottom: 24px;
}
.catalog-filter-item {
  margin-bottom: 32px;
}
.catalog-filter-label {
  display: flex;
  align-items: center;
  grid-gap: 9px;
  margin-bottom: 10px;
}
.catalog-filter-label input {
  display: block;
  height: 14px;
  width: 14px;
}
.catalog-filter-rating {
  display: flex;
  align-items: center;
  grid-gap: 7px;
}
.catalog-filter-rating-stars {
  display: flex;
  grid-gap: 4px;
}
.catalog-filter-rating-stars svg {
  display: block;
  width: 12px;
  height: 12px;
}
.catalog-filter-price {
  padding: 10px 12px;
  margin-bottom: 10px;
}
.catalog-locks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  align-items: stretch;
  position: relative;
}
.catalog-locks .locks-item {
  width: auto !important;
  min-width: auto !important;
  max-width: auto !important;
}
.catalog-locks-loading {
  height: 100%;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  margin: -20px;
  padding-top: 120px;
  opacity: 0;
  background-color: #fff;
  transition: all 0.3s linear;
}
.catalog-locks-loading.show {
  pointer-events: painted;
  opacity: 1;
}
.catalog-locks-loading .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: scale(2);
}
.catalog-locks-loading .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #B7B7B7;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.catalog-locks-loading .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.catalog-locks-loading .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.catalog-locks-loading .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.catalog-locks-loading .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@media (max-width: 1020px) {
  .catalog-inner {
    display: flex;
    flex-direction: column;
    grid-gap: 40px;
  }
  .catalog-filter {
    display: flex;
    grid-gap: 10px;
  }
  .catalog-filter-nameIput {
    height: 50px;
    margin-bottom: 0;
  }
  .catalog-filter-btn {
    display: flex;
  }
  .catalog-filter-main {
    display: block;
    position: fixed;
    right: -310px;
    top: 0;
    z-index: 1002;
    width: 300px;
    height: 100vh;
    flex-direction: column-reverse;
    justify-content: start;
    align-items: flex-start;
    padding: 30px 10px;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s linear;
  }
  .catalog-filter-main.show {
    right: 0;
  }
  .catalog-filter-main-exit {
    display: flex;
  }
}
@media (max-width: 768px) {
  .catalog-locks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
  }
}
@media (max-width: 576px) {
  .catalog-locks {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px;
  }
}
@media (max-width: 485px) {
  .catalog-filter-btn {
    padding: 8px 12px;
  }
  .catalog-filter-btn img {
    height: 34px;
    width: 34px;
  }
  .catalog-filter-btn .text {
    display: none;
  }
}
@media (max-width: 380px) {
  .catalog-locks {
    grid-gap: 15px;
  }
}

.services .wrapper-header-withSb {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services .wrapper-header-withSb p {
  max-width: 800px;
  line-height: 1.4;
  text-align: center;
}
.services-title {
  text-align: center;
}
.services-block:nth-child(2n) .services-item {
  grid-template-columns: 1fr 490px;
}
.services-block:nth-child(2n) .services-item-preview {
  grid-column: 2/3;
}
.services-block:nth-child(2n) .services-item-content {
  grid-row: 1/2;
  grid-column: 1/2;
}
.services-block {
  margin-bottom: 90px;
}
.services-item {
  display: grid;
  grid-template-columns: 490px 1fr;
  align-items: center;
  grid-gap: 110px;
}
.services-item-preview {
  overflow: hidden;
  padding-bottom: 70%;
  position: relative;
  border-radius: 10px;
}
.services-item-preview img {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.services-item-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.services-item-text {
  line-height: 1.4;
  margin-bottom: 30px;
}
.services-item-btn {
  padding: 16px 38px;
  border-radius: 6px;
  border: 1.4px solid var(--primary, #212121);
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
}
.services-item-btn:hover {
  background-color: rgba(33, 33, 33, 0.1);
}
@media (max-width: 1200px) {
  .services-item {
    grid-gap: 80px;
  }
}
@media (max-width: 992px) {
  .services-block {
    margin-bottom: 80px;
  }
  .services-block:nth-child(2n) .services-item {
    grid-template-columns: 1fr 390px;
  }
  .services-item {
    grid-template-columns: 390px 1fr;
    grid-gap: 60px;
  }
}
@media (max-width: 768px) {
  .services-block:nth-child(2n) .services-item {
    grid-template-columns: 1fr 250px;
  }
  .services-item {
    grid-template-columns: 250px 1fr;
    grid-gap: 40px;
  }
  .services-item-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .services-item-text {
    margin-bottom: 22px;
  }
  .services-item-btn {
    padding: 16px 28px;
    border-radius: 4px;
  }
}
@media (max-width: 576px) {
  .services-block:nth-child(2n) .services-item {
    grid-template-columns: 1fr;
  }
  .services-item {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .services-item-preview {
    grid-row: 1/2;
    grid-column: 1/2 !important;
  }
  .services-item-content {
    grid-row: 2/3 !important;
    grid-column: 1/2;
  }
  .services-item-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .services-item-text {
    margin-bottom: 22px;
  }
  .services-item-btn {
    padding: 16px 28px;
    border-radius: 4px;
  }
}
.montage-form-modal .modal-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviewsList-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.reviewsList-item {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(33, 33, 33, 0.2);
}
.reviewsList-item-photos {
  display: grid;
  margin-bottom: 22px;
  background-color: rgba(0, 0, 0, 0.05);
}
.reviewsList-item-photo {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.reviewsList-item-authorBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.reviewsList-item-author {
  display: flex;
  align-items: center;
  grid-gap: 14px;
}
.reviewsList-item-author-avatar {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.reviewsList-item-author-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #212121;
}
.reviewsList-item-rating-stars {
  display: flex;
  grid-gap: 12px;
}
.reviewsList-item-rating-stars img {
  display: block;
  height: 16px !important;
  width: 16px !important;
}
@media (max-width: 992px) {
  .reviewsList .reviewsList-inner {
    grid-gap: 30px;
  }
  .reviewsList .reviewsList-item-author-avatar {
    height: 40px;
    width: 40px;
  }
  .reviewsList .reviewsList-item-rating-stars {
    grid-gap: 8px;
  }
  .reviewsList .reviewsList-item-rating-stars img {
    height: 14px !important;
    width: 14px !important;
  }
}
@media (max-width: 768px) {
  .reviewsList .reviewsList-inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .reviewsList .reviewsList-item {
    padding: 16px;
  }
  .reviewsList .reviewsList-item-authorBlock {
    margin-bottom: 12px;
  }
  .reviewsList .reviewsList-item-author-name {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .reviewsList .reviewsList-item {
    padding: 12px;
  }
  .reviewsList .reviewsList-item-author-avatar {
    height: 36px;
    width: 36px;
  }
  .reviewsList .reviewsList-item-author-name {
    font-size: 12px;
  }
  .reviewsList .reviewsList-item-rating-stars {
    grid-gap: 6px;
  }
  .reviewsList .reviewsList-item-rating-stars img {
    height: 12px !important;
    width: 12px !important;
  }
}
@media (max-width: 380px) {
  .reviewsList .reviewsList-item {
    padding: 8px;
  }
  .reviewsList .reviewsList-item-author-avatar {
    height: 32px;
    width: 32px;
  }
  .reviewsList .reviewsList-item-author-name {
    font-size: 10px;
  }
  .reviewsList .reviewsList-item-rating-stars {
    grid-gap: 4px;
  }
  .reviewsList .reviewsList-item-rating-stars img {
    height: 10px !important;
    width: 10px !important;
  }
}

.aboutSafesPage-info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #06c;
}
.aboutSafesPage-info-content {
  padding: 40px 30px;
}
.aboutSafesPage-info-content h3 {
  color: white;
}
.aboutSafesPage-info-content p {
  line-height: 1.8;
  color: white;
}
.aboutSafesPage-info-content p:first-of-type {
  margin-bottom: 20px;
}
.aboutSafesPage-features-title {
  text-align: center;
  color: #4094F7;
}
.aboutSafesPage-features-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.aboutSafesPage-features-item-preview {
  padding-bottom: 60%;
  margin-bottom: 22px;
  position: relative;
}
.aboutSafesPage-features-item-preview img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.aboutSafesPage-features-item-title {
  font-size: 20px;
  color: #4094F7;
  margin-bottom: 14px;
}
.aboutSafesPage-features-item-description {
  line-height: 1.6;
}
.aboutSafesPage-safes-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 40px;
  padding: 50px 50px 50px 50px;
  border-style: dashed;
  border-width: 0px 0px 2px 0px;
  border-color: #999;
  background-color: #f6f6f6;
}
.aboutSafesPage-safes-preview {
  grid-row: 1/3;
  padding-bottom: 120%;
  border-style: solid;
  border-width: 1px;
  border-color: #999;
  border-radius: 20px;
  background-color: white;
  position: relative;
}
.aboutSafesPage-safes-preview img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.aboutSafesPage-safes-content:last-child {
  grid-column: 2/3;
}
.aboutSafesPage-safes-title {
  font-size: 26px;
  margin-bottom: 24px;
}
.aboutSafesPage-safes-description {
  margin-bottom: 28px;
}
.aboutSafesPage-safes .locks-rating {
  margin-bottom: 12px;
}
.aboutSafesPage-safes .locks-stars img {
  width: 14px;
  height: 14px;
}
.aboutSafesPage-safes .locks-review {
  font-size: 16px;
}
.aboutSafesPage-safes-prices {
  display: flex;
  grid-gap: 40px;
}
.aboutSafesPage-safes-prices-now {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #4094F7;
}
.aboutSafesPage-safes-prices-old {
  font-family: "Roboto";
  font-size: 18px;
  line-height: 1.4;
  color: #B7B7B7;
  position: relative;
}
.aboutSafesPage-safes-prices-old::after {
  content: "";
  display: block;
  height: 1.8px;
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #B7B7B7;
}
@media (max-width: 1200px) {
  .aboutSafesPage-features-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .aboutSafesPage-info-inner {
    grid-template-columns: 1fr;
  }
  .aboutSafesPage-info-content {
    padding: 40px 30px;
  }
  .aboutSafesPage-info-content p:first-of-type {
    margin-bottom: 18px;
  }
  .aboutSafesPage-features-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutSafesPage-safes-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 30px 20px 30px 20px;
  }
}
@media (max-width: 768px) {
  .aboutSafesPage-info-inner {
    grid-template-columns: 1fr;
  }
  .aboutSafesPage-info-content {
    padding: 40px 30px;
  }
  .aboutSafesPage-features-items {
    grid-gap: 30px;
  }
  .aboutSafesPage-features-item-title {
    font-size: 18px;
  }
  .aboutSafesPage-safes-preview {
    grid-row: 1/2;
  }
  .aboutSafesPage-safes-item {
    grid-gap: 30px;
  }
  .aboutSafesPage-safes-content:last-child {
    grid-column: 1/3;
  }
  .aboutSafesPage-safes-prices {
    align-items: flex-start;
    grid-gap: 0px;
    flex-direction: column;
  }
  .aboutSafesPage-safes-prices-old {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .aboutSafesPage-safes-item {
    padding: 30px 20px;
  }
}
@media (max-width: 500px) {
  .aboutSafesPage-features-items {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .aboutSafesPage-safes-item {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .aboutSafesPage-safes-preview {
    margin-bottom: 20px;
  }
  .aboutSafesPage-safes-content:last-child {
    grid-column: 1/2;
  }
}
@media (max-width: 380px) {
  .aboutSafesPage-safes-preview {
    padding-bottom: 80%;
  }
}

.faq-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 20px 30px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #B7B7B7;
  margin-bottom: 30px;
}
.faq-item-title {
  font-size: 18px;
  font-weight: 500;
  color: #B7B7B7;
}
.faq-item-question {
  font-size: 18px;
  font-weight: 600;
  color: #4094F7;
}
.faq-item-answer {
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .faq-item {
    grid-template-columns: 100px 1fr;
  }
}
@media (max-width: 768px) {
  .faq-item {
    grid-template-columns: 80px 1fr;
    grid-gap: 18px 26px;
    padding: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .faq-item {
    display: block;
    padding: 16px;
    margin-bottom: 24px;
  }
  .faq-item-title {
    margin-bottom: 4px;
  }
  .faq-item-question {
    display: block;
    margin-bottom: 16px;
  }
}
.savedProducts-list {
  max-width: 900px;
  margin-bottom: 40px;
}
.savedProducts-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.savedProducts-item-main {
  display: flex;
  grid-gap: 14px;
  align-items: center;
}
.savedProducts-item-main-preview {
  display: flex;
  width: 84px;
  height: 84px;
  padding: 6.239px 6.297px 6.297px 6.239px;
  border-radius: 15px;
  background: #F0ECE7;
}
.savedProducts-item-main-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.savedProducts-item-main-cetegories span {
  color: #BCBCBC;
  font-size: 14px;
  font-weight: 500;
}
.savedProducts-item-price {
  font-size: 18px;
  font-weight: 500;
}
.savedProducts-item-price-old {
  display: inline-block;
  color: #B7B7B7;
  font-size: 14px;
  font-family: "Roboto";
  line-height: 1.4;
  margin-bottom: 2px;
  position: relative;
}
.savedProducts-item-price-old::after {
  content: "";
  display: block;
  height: 1.4px;
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #B7B7B7;
}
.savedProducts-item-toCart {
  display: inline-flex;
  align-items: center;
  grid-gap: 14px;
}
.savedProducts-item-toCart img {
  width: 20px;
  height: 20px;
}
.savedProducts-item-toCart span {
  color: #4094F7;
  font-size: 18px;
  font-weight: 500;
}
.savedProducts-item-delete img {
  width: 26px;
  height: 26px;
}
.savedProducts-item:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.savedProducts-total-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.savedProducts-total-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}
.savedProducts-total-price-subtitle {
  color: #C9C9C9;
  font-size: 16px;
  font-weight: 400;
}
.savedProducts-total-price-title {
  font-size: 30px;
  font-weight: 600;
}
.savedProducts-total-btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .savedProducts-list {
    max-width: none;
    margin-bottom: 30px;
  }
  .savedProducts-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: none;
  }
  .savedProducts-item-main {
    grid-gap: 8px;
  }
  .savedProducts-item-main-preview {
    width: 64px;
    height: 64px;
  }
  .savedProducts-item-price {
    margin-bottom: 10px;
  }
  .savedProducts-total-header {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .savedProducts-total-price {
    margin-bottom: 10px;
  }
  .savedProducts-total-price-subtitle {
    font-size: 14px;
  }
  .savedProducts-total-price-title {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .savedProducts-item-main-title {
    font-size: 16px;
  }
  .savedProducts-item-main-cetegories span {
    font-size: 12px;
  }
  .savedProducts-item-price {
    font-size: 16px;
  }
  .savedProducts-item-price-title {
    font-size: 24px;
  }
  .savedProducts-item-toCart span {
    font-size: 16px;
  }
  .savedProducts-total-header {
    font-size: 20px;
  }
  .savedProducts-total-price-subtitle {
    font-size: 14px;
  }
  .savedProducts-total-price-title {
    font-size: 24px;
  }
  .savedProducts-total-btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .savedProducts-item {
    display: grid;
    grid-template-columns: 1fr 100px 26px;
    grid-gap: 20px 30px;
  }
  .savedProducts-item-main-cetegories span {
    font-size: 12px;
  }
  .savedProducts-item-toCart, .savedProducts-item .countControl {
    grid-row: 2/3;
  }
  .savedProducts-total-header {
    font-size: 18px;
  }
  .savedProducts-total-price-title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .savedProducts-item {
    grid-template-columns: 1fr 80px 26px;
    grid-gap: 12px 20px;
  }
  .savedProducts-item-main {
    grid-column: 1/3;
  }
  .savedProducts-item .countControl {
    grid-column: 1/3;
  }
  .savedProducts-item-prices {
    grid-row: 2/3;
    grid-column: 2/4;
  }
  .savedProducts-item-price-title {
    font-size: 18px;
  }
  .savedProducts-item.favoriteProducts {
    grid-template-columns: 1fr 1fr 26px;
    grid-gap: 12px 20px;
  }
  .savedProducts-item.favoriteProducts .savedProducts-item-prices {
    grid-column: 1/2;
  }
  .savedProducts-item.favoriteProducts .savedProducts-item-toCart {
    grid-column: 2/4;
    grid-gap: 6px;
  }
  .savedProducts-item.favoriteProducts .savedProducts-item-toCart img {
    width: 16px;
    height: 16px;
  }
  .savedProducts-item.favoriteProducts .savedProducts-item-toCart span {
    font-size: 14px;
  }
  .savedProducts-total-header {
    font-size: 16px;
  }
  .savedProducts-total-price-title {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .savedProducts-item-price-title {
    font-size: 16px;
  }
  .savedProducts-item-toCart img {
    width: 14px;
    height: 14px;
  }
  .savedProducts-item-toCart span {
    font-size: 10px;
  }
  .savedProducts-total-price-title {
    font-size: 18px;
  }
}

.ordersList-table {
  width: 100%;
}
.ordersList-title {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.ordersList-title, .ordersList-text {
  border-bottom: 1px solid #DADADA;
  padding: 16px 0px 18px;
}
.ordersList-text {
  border-bottom: 1px solid #DADADA;
  padding: 16px 0px 18px;
  font-size: 16px;
  font-weight: 500;
}
.ordersList-text.date {
  color: #959595;
}
@media (max-width: 992px) {
  .ordersList-text {
    font-size: 14px;
    padding: 12px 0px 14px;
  }
}
@media (max-width: 768px) {
  .ordersList-title {
    font-size: 16px;
  }
  .ordersList-text {
    font-size: 14px;
    padding: 12px 0px 14px;
  }
}
@media (max-width: 576px) {
  .ordersList-title {
    font-size: 14px;
  }
  .ordersList-text {
    font-size: 12px;
    padding: 10px 0px 12px;
  }
}
@media (max-width: 380px) {
  .ordersList-title {
    font-size: 12px;
  }
  .ordersList-text {
    font-size: 10px;
    padding: 8px 0px 10px;
  }
}

.orderDetail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  grid-gap: 42px;
}
.orderDetail-block.top {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.orderDetail-info {
  max-width: 400px;
  margin-bottom: 18px;
}
.orderDetail-info h4, .orderDetail-info p {
  display: inline;
  font-size: 16px;
  margin-bottom: 0;
}
.orderDetail-products th, .orderDetail-products td {
  border-bottom: 1px solid #DADADA;
  padding: 16px 0px 18px;
  margin: 0px;
}
.orderDetail-products th {
  padding-top: 0px !important;
}
.orderDetail-products-title {
  color: #16182D;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding-top: 0px !important;
}
.orderDetail-products-main {
  display: flex;
  align-items: center;
  grid-gap: 18px;
}
.orderDetail-products-main-preview {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #F0ECE7;
}
.orderDetail-products-main-name {
  max-width: 225px;
  color: #16182D;
  font-size: 16px;
  font-family: Helvetica Neue;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.orderDetail-products-count {
  color: #959595;
  font-size: 16px;
  font-weight: 500;
}
.orderDetail-products-price {
  font-size: 16px;
  font-weight: 600;
}
.orderDetail-statuses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 20px;
}
.orderDetail-statuses-title {
  color: #16182D;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 18px;
}
.orderDetail-statuses-id {
  color: #959595;
  margin-bottom: 0;
}
.orderDetail-totalPrice {
  display: flex;
  padding: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  border-radius: 10px;
  background: var(--accent-color, #4094F7);
}
.orderDetail-totalPrice-item {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.orderDetail-totalPrice-block {
  width: 100%;
}
.orderDetail-totalPrice-block .orderDetail-totalPrice-item:first-child {
  margin-bottom: 16px;
}
.orderDetail-totalPrice-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}
.orderDetail-totalPrice-value {
  color: #FFF;
  font-weight: 600;
  line-height: 18px;
}
.orderDetail-totalPrice-value.total {
  font-size: 22px;
}
@media (max-width: 1200px) {
  .orderDetail-block {
    grid-template-columns: 1fr;
  }
  .orderDetail-products {
    margin-top: 30px;
  }
}
@media (max-width: 992px) {
  .orderDetail-info {
    max-width: 100%;
  }
  .orderDetail-statuses {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .orderDetail-block {
    grid-gap: 30px;
  }
  .orderDetail-products {
    display: block;
  }
  .orderDetail-products-main {
    margin-top: 16px;
  }
}
@media (max-width: 576px) {
  .orderDetail-products-preview {
    width: 44px;
    height: 44px;
  }
  .orderDetail-products-name {
    max-width: 140px;
    font-size: 14px;
  }
  .orderDetail-totalPrice-title {
    font-size: 14px;
  }
  .orderDetail-totalPrice-value.total {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .orderDetail-products-name {
    max-width: 110px;
  }
}

.profile-inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  grid-gap: 24px;
}
.profile-block {
  display: grid;
  grid-template-columns: 35% 60%;
  grid-gap: 30px 0px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #BEBEBE;
}
.profile-label {
  font-size: 16px;
  font-weight: 400;
}
.profile-label span.text {
  color: #212121 !important;
}
.profile-label span {
  color: #FF5353;
}
.profile button {
  grid-column: 2/3;
}

@media (max-width: 1200px) {
  .profile-inner {
    grid-template-columns: 1fr;
  }
  .profile-block {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .profile-block {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .profile-label {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .profile-block {
    grid-gap: 20px 0px;
  }
}
.makingAnOrder-inner {
  max-width: 795px;
}
.makingAnOrder-block {
  margin-bottom: 40px;
}
.makingAnOrder-block-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.makingAnOrder-block-title span {
  color: #4094F7;
}
.makingAnOrder-info .profile-label {
  display: block;
  margin-bottom: 4px;
}
.makingAnOrder-info .profile-input {
  max-width: 500px;
  margin-bottom: 20px;
}
.makingAnOrder-checkbox-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 28px 0px;
  margin-bottom: 30px;
}
.makingAnOrder-checkbox-block {
  display: flex;
  padding: 26px 20px;
  align-items: center;
  justify-content: start;
  gap: 10px;
  border: 1.4px solid #929292;
  transition: all 0.2s linear;
  cursor: pointer;
}
.makingAnOrder-checkbox-block * {
  cursor: pointer;
}
.makingAnOrder-checkbox-block:hover {
  border-color: #4094F7;
}
.makingAnOrder-checkbox-block.active {
  border-color: #4094F7;
  background-color: rgba(64, 148, 247, 0.1);
}
.makingAnOrder-checkbox-block.active h4 {
  color: #4094F7;
}
.makingAnOrder-checkbox-block-checkbox {
  display: block;
  height: 18px;
  width: 18px;
  border-radius: 100px;
}
.makingAnOrder-checkbox-block-title {
  color: #929292;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.2s linear;
}
.makingAnOrder-checkbox-value {
  grid-column: 1/3;
}
.makingAnOrder-checkbox-value-pickup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
.makingAnOrder-checkbox-value-pickup p {
  margin-bottom: 20px;
}
.makingAnOrder-checkbox-value-delivery {
  width: 100%;
}
.makingAnOrder-checkbox-value-online_card {
  grid-column: 1/3;
}
.makingAnOrder-checkbox-value-online_card .form-container .field-container:first-of-type {
  grid-area: name;
}
.makingAnOrder-checkbox-value-online_card .form-container .field-container:nth-of-type(2) {
  grid-area: number;
}
.makingAnOrder-checkbox-value-online_card .form-container .field-container:nth-of-type(3) {
  grid-area: expiration;
}
.makingAnOrder-checkbox-value-online_card .form-container .field-container:nth-of-type(4) {
  grid-area: security;
}
.makingAnOrder-checkbox-value-online_card .field-container input {
  box-sizing: border-box;
}
.makingAnOrder-checkbox-value-online_card .field-container {
  position: relative;
}
.makingAnOrder-checkbox-value-online_card .form-container {
  display: grid;
  grid-column-gap: 10px;
  grid-template-columns: auto auto;
  grid-template-rows: 90px 90px 90px;
  grid-template-areas: "name name" "number number" "expiration security";
  color: #707070;
}
.makingAnOrder-checkbox-value-online_card .form-container label {
  margin-bottom: 4px !important;
}
.makingAnOrder-item-titleBlock {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  margin-bottom: 12px;
}
.makingAnOrder-item-title {
  font-size: 16px;
  font-weight: 500;
}
.makingAnOrder-item-label {
  display: inline-block;
  color: #929292;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.makingAnOrder-item-textarea {
  margin-bottom: 20px;
}
.makingAnOrder-totalBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 20px;
  margin-bottom: 22px;
}
.makingAnOrder-totalBlock-products {
  padding-top: 20px;
  margin-bottom: 60px;
  border-top: 1px solid #DADADA;
}
.makingAnOrder-totalBlock-products .makingAnOrder-totalBlock-title {
  margin-bottom: 20px;
}
.makingAnOrder-totalBlock-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}
.makingAnOrder-totalBlock-price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}
.makingAnOrder-totalBlock-text {
  margin-bottom: 28px;
}
.makingAnOrder-totalBlock-btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .makingAnOrder .makingAnOrder-inner {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .makingAnOrder .makingAnOrder-checkbox-list {
    grid-gap: 20px 0px;
  }
}
@media (max-width: 768px) {
  .makingAnOrder .makingAnOrder-checkbox-block {
    padding: 20px;
  }
  .makingAnOrder .makingAnOrder-item-titleBlock {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .makingAnOrder .makingAnOrder-checkbox-list {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .makingAnOrder .makingAnOrder-checkbox-value {
    grid-column: 1/2;
  }
  .makingAnOrder .makingAnOrder-item-label {
    display: block;
    margin-bottom: 8px;
  }
  .makingAnOrder .makingAnOrder-item-textarea {
    margin-bottom: 12px;
  }
  .makingAnOrder .makingAnOrder-totalBlock {
    flex-direction: column;
    align-items: flex-start;
  }
  .makingAnOrder .makingAnOrder-totalBlock-title {
    font-size: 16px;
  }
  .makingAnOrder .makingAnOrder-totalBlock-price {
    font-size: 20px;
  }
  .makingAnOrder .makingAnOrder-totalBlock-text {
    margin-bottom: 12px;
  }
}
@media (max-width: 495px) {
  .makingAnOrder-checkbox-value-pickup {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .makingAnOrder .makingAnOrder-info .profile-input {
    max-width: 100%;
  }
  .makingAnOrder .makingAnOrder-totalBlock-btn {
    font-size: 16px;
  }
  .makingAnOrder .makingAnOrder-checkbox-value-online_card .form-container {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    grid-gap: 14px;
  }
}

.locks-item {
  height: 100%;
  min-width: 210px;
  width: 210px;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  position: relative;
}
.locks-item-main {
  position: relative;
}
.locks-item-main .cartsProduct-saveToggleBtn span:last-child {
  display: none;
}
.locks-item-main .cartsProduct-saveToggleBtn.saved span:first-of-type {
  display: none;
}
.locks-item-main .cartsProduct-saveToggleBtn.saved span:last-child {
  display: inline;
}
@media (max-width: 576px) {
  .locks-item {
    width: 100%;
    gap: 8px;
    padding: 10px;
  }
}
.locks-preview {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .locks-preview {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}
.locks-sale {
  padding: 2px 4px;
  background: #070917;
  color: white;
  font-size: 14px;
  position: absolute;
  top: 24px;
  left: -16px;
  z-index: 2;
}
.locks-likeBtn {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.locks-likeBtn img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.locks-likeBtn img:last-child {
  z-index: 2;
  opacity: 0;
  transition: all 0.2s linear;
}
.locks-likeBtn.active img:last-child {
  opacity: 1;
}
.locks-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 6px;
  margin-bottom: 6px;
}
.locks-stars {
  display: flex;
  grid-gap: 4px;
}
.locks-stars svg {
  display: block;
  height: 10px;
  width: 10px;
}
.locks-review {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1;
  color: #B7B7B7;
}
.locks-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #212121;
  margin-bottom: 6px;
}
.locks-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .locks-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.locks-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #16182D;
  color: #212121;
}
.locks-oldPrice {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #B7B7B7;
  position: relative;
}
.locks-oldPrice::after {
  content: "";
  display: block;
  height: 1px;
  width: 110%;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate3d(-50%, -50%, 0);
  background-color: #B7B7B7;
}
@media (max-width: 1200px) {
  .locks-item {
    width: 180px;
    min-width: 180px;
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .locks-item {
    width: 180px;
    min-width: 180px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .locks-item {
    width: 170px;
    min-width: 170px;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .locks-item {
    width: 160px;
    min-width: 160px;
    gap: 16px;
    padding: 10px;
  }
  .locks-likeBtn {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 380px) {
  .locks-item {
    width: 130px;
    min-width: 130px;
    padding: 8px;
  }
  .locks-price {
    font-size: 16px;
  }
}

.categories-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
}
.categories-preview {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 100% !important;
}
.categories-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #212121;
  margin-bottom: 6px;
}
.categories-text {
  font-weight: 400;
  font-size: 14px;
  color: #B7B7B7;
}
@media (max-width: 992px) {
  .categories-item {
      width: 100%;
      max-width: 200px;
    padding: 12px;
    gap: 10px;
    border-radius: 8px;
  }
  .categories-preview {
    border-radius: 8px;
  }
  .categories-title {
    margin-bottom: 6px;
  }
  .categories-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .categories-preview {
    border-radius: 8px;
  }
  .categories-title {
    margin-bottom: 6px;
  }
  .categories-text {
    font-size: 14px;
  }
}
 @media (max-width: 576px) {
 .categories-item {
     display: grid;
     grid-template-columns: 140px 1fr;
      width: 100%;
      max-width: 100%;
  }
 }
 @media (max-width: 380px) {
.categories-item {
     grid-template-columns: 100px 1fr;
  } 
 }
.projects-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
}
.projects-preview {
  width: 280px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.projects-preview .logo {
  display: block;
  width: 70px;
  height: 26px;
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 2;
}
.projects-subtitle {
  font-weight: 500;
  font-size: 14px;
  color: #212121;
  margin-bottom: 6px;
}
.projects-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #212121;
}
@media (max-width: 992px) {
  .projects-item {
    padding: 10px;
    gap: 10px;
    border-radius: 8px;
  }
  .projects-preview {
    width: 236px;
    height: 170px;
    border-radius: 12px;
  }
  .projects-preview .logo {
    top: 12px;
    right: 18px;
  }
  .projects-subtitle {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
@media (max-width: 768px) {
  .projects-item {
    padding: 10px;
    gap: 10px;
    border-radius: 8px;
  }
  .projects-preview {
    width: 222px;
    height: 160px;
    border-radius: 12px;
  }
  .projects-preview .logo {
    width: 56px;
    height: 20px;
    top: 10px;
    right: 16px;
  }
  .projects-subtitle {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
@media (max-width: 576px) {
  .projects-preview {
    width: 210px;
    height: 150px;
    border-radius: 12px;
  }
  .projects-preview .logo {
    width: 56px;
    height: 20px;
    top: 10px;
    right: 14px;
  }
}

.linksFixed {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 10;

  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.linksFixed-linkSn {
  display: block;

  height: 45px;
  width: 45px;
}

.linksFixed-linkSn svg {
    height: 100%;
    width: 100%;
}


 @media (max-width: 1200px) {
     .linksFixed {
      right: 20px;
      bottom: 35px;

      grid-gap: 10px;
    }

    .linksFixed-linkSn {
      height: 40px;
      width: 40px;
    }
}


 @media (max-width: 992px) {
     .linksFixed {
      right: 20px;
      bottom: 30px;

      grid-gap: 10px;
    }

    .linksFixed-linkSn {
      height: 38px;
      width: 38px;
    }
}


.categories-block {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

 @media (max-width: 992px) {
     .categories-block {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
        grid-gap: 20px;
    }
 }