@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html, body {
    overflow-x: hidden !important;
}

.button-submit-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.button-submit-area form {
      display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.button-submit-area form input {
  width: 100%;
  max-width: 220px;
  height: 45px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}
.button-submit-area form button {
    border: none;
    outline: none;
    padding: 10px 40px;
    text-wrap: nowrap;
    background-color: #80df80;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 200ms ease;
    border-radius: 12px;
    border: 2px solid transparent;
}
.button-submit-area form button:hover {
    background-color: white;
    color: black;
    border: 2px solid #80df80;
}
.button-submit-area form button:active {
    transform: scale(0.95);
}

.button-submit-area form input:hover {
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
}

.button-submit-area form input:active {
  transform: scale(0.95);
}

.button-submit-area form input:focus {
  border: 2px solid grey;
}
.add-basket-btn {
    z-index: 1000;
    height: 44px;
    width: 100%;
    max-width: 49%;
    margin-top: 0;
    min-height: 44px;
    outline: none;
    background: #FFFFFF66;
    border: 1px solid #C00000;
    border-radius: 8px;
    color: #C00000;
    font-weight: 400;
    transition: 100ms ease;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

}


.add-basket-btn:hover {
    background-color: white;
    transform: scale(1.01);
}
.add-basket-btn:active {
    transform: scale(0.99);
}


.get-basket-btn {
    min-width: 32px;
    width: 32px;
    height: 32px;
    min-height: 32px;
    margin-left: 36px;
}

.basket-buttons {
        width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
}
.basket-wrapper {
  width: 100%;
  padding: 0 72px;
  margin-top: 48px;
  height: auto;
}
.basket-wrapper .basket-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 34px;
}
.basket-wrapper .basket-content .basket-items-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item {
  border: 1px solid #ececec;
  transition: 100ms ease;
  border-radius: 18px;
  background-color: transparent;
  width: 100%;
  height: 188px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .image-product {
  max-width: 196px;
  width: 100%;
  height: 160px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .image-product img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  max-width: 290px;
  width: 100%;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product .title {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product .small-texts {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product .small-texts span {
  color: #212121;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product .small-texts p {
  color: #b9b9b9;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: start;
  letter-spacing: -0.3px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 46px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .top-price {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: right;
  letter-spacing: -0.2px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .counter {
  height: 40px;
  border-radius: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border: 2px solid #e4e7e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .counter .increment,
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .counter .decrement {
  width: 100%;
  outline: none;
  background-color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: 50ms ease;
  border: none;
  color: #191c1f;
  font-weight: 400;
  font-size: 21px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .counter .increment:active,
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .counter .decrement:active {
  color: green;
  transform: scale(0.85);
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .counter .main-count {
  padding: 0px 25.5px;
  color: #475156;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .bottom-price {
  color: #747474;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: right;
  letter-spacing: -0.2px;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .trash {
  min-width: 40px;
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 8px;
  background-color: white;
  transition: 150ms ease;
  border: 2px solid #c00000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .trash img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .trash:hover {
  transform: scale(1.03);
  border: 2px solid #ee1313;
  box-shadow: 0px 0px 10px 0px rgba(226, 30, 30, 0.511);
}
.basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .trash:active {
  transform: scale(0.95);
}
.basket-wrapper .basket-content .basket-items-grid .basket-item:hover {
  background-color: rgba(249, 249, 249, 0.4431372549);
  border: 1px solid #e5e5e5;
}
.basket-wrapper .basket-content .button-submit-area {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.basket-wrapper .basket-content .button-submit-area a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 196px;
  height: 44px;
  transition: 150ms ease;
  outline: none;
  border: none;
  width: 100%;
  background: #c00000;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.basket-wrapper .basket-content .button-submit-area a:hover {
  background-color: #fd6666;
  color: white;
}
.basket-wrapper .basket-content .button-submit-area a:active {
  transform: scale(0.96);
}

@media only screen and (max-width: 968px) {
  .basket-wrapper {
    margin-top: 24px;
    padding: 0px 24px;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area {
    gap: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info {
    gap: 12px;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product .title {
    font-size: 14px;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .info-product .small-texts span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 568px) {
    .basket-wrapper .basket-content .button-submit-area {
                justify-content: center;
        align-items: center;
    }
    .button-submit-area form {

        flex-direction: column !important;
    }
    .button-submit-area form input {
        width: 100%;
    }
    .button-submit-area form button {
        width: 100%;
    }
  .basket-wrapper .basket-content .basket-items-grid .basket-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    height: auto;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area {
    width: 100%;
    justify-content: space-between;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 400px) {
  .basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .left-image-and-info .image-product {
    width: 100%;
    max-width: 100%;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item {
    padding: 12px 18px;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .top-price {
    font-size: 15px;
  }
  .basket-wrapper .basket-content .basket-items-grid .basket-item .right-main-area .price-counters .bottom-price {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */





.product-feature-inner {
    width: 100%;
    height: 550px;
    max-width: 450px;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-start;
}
.product-feature-inner .main-image {
    width: 100%;
    height: auto;
}

.product-feature-inner a {
  display: block;
}

.product-feature-inner img {
  border-radius: 8px;
  transition: transform 0.3s;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.big-image {
  width: 100%;
  height: auto;
}

.small-images {
    height: 100% !important;
    max-width: 100px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.small-images {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;

}
 .small-images {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.small-images {
    --sb-track-color: #ffffff;
    --sb-thumb-color: #858585;
    --sb-size: 5px;
}

.small-images::-webkit-scrollbar {
    width: var(--sb-size); /* Kaydırıcının genişliği */
}

.small-images::-webkit-scrollbar-track {
    background: var(--sb-track-color); /* Kaydırıcı arka plan rengi */
    border-radius: 3px; /* Kenar yuvarlama */
}

.small-images::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color); /* Kaydırıcı tutamağının rengi */
    border-radius: 3px; /* Kenar yuvarlama */
}

/* Webkit tarayıcılar dışındaki tarayıcılar için */
@supports not selector(::-webkit-scrollbar) {
    .small-images {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); /* Alternatif kaydırıcı renkleri */
    }
}






.small-images img {
    width: 100%;
    max-height: 120px !important;
    height: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.small-images img:hover {
  transform: scale(1.05);
}


.category-items-container {
  border: 1px solid #e4e7e9;
  width: 100%;
  height: max-content;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.12);
  opacity: 1;
  visibility: visible;
  transition: 10ms ease-in-out;
  padding: 24px 12px;
  z-index: 10;
}
.category-items-container h1 {
  color: #0c7bfa !important;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
}
.category-items-container .category-items {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
}
.category-items-container .category-items .category-item {
  width: 100%;
  border: 1px solid #e1e1e1;
  position: relative;
}
.category-items-container .category-items .category-item .category-item-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5f6c72;
  transition: 0.1s;
}
.category-items-container .category-items .category-item .category-item-link svg {
  opacity: 1;
  transition: 0.4s;
}
.category-items-container .category-items .category-item .subcategory-area {
  position: absolute;
  top: 0;
  left: 100%;
  height: calc(100vh - 350px) !important;
  background: transparent;
  padding-left: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0ms ease-in-out;
  z-index: 1000 !important;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner {
  position: relative;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #e4e7e9;
  background: #fff;
  padding: 20px;
  border-radius: 3px;
  display: flex;
  align-items: start;
  gap: 20px;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 300px;
  min-width: 300px;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-list .subcategory-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style-type: none;
  gap: 24px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #5f6c72;
  transition: 0.4s;
  background: #fff;
  width: 100%;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-list .subcategory-item a {
  text-decoration: none;
  color: black;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-list .active {
  background: #f2f4f5;
  color: #191c1f;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-list .subcategory-item-all {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #5f6c72;
  transition: 0.4s;
  background: #fff;
  width: 100%;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-list .subcategory-item-all:hover {
  background: #f2f4f5;
  color: #191c1f;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products {
  width: 100%;
  min-width: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list {
  width: 100%;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item {
    align-items: flex-start;
    justify-items: flex-start;
  background: transparent;
  padding: 12px;
  gap: 12px;
  width: 100%;
  border-radius: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item .item {
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item .item span {
  color: #475156;
  font-size: 16px;
  text-align: start;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item .item ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item .item ul li {
  color: blue;
  text-align: start;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item .item ul li a {
  text-decoration: none;
  color: blue;
  font-size: 16px;
  text-align: start;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-for-products .subcategory-for-products-list .subcategory-for-product-item .item ul li a:hover {
    color: #303030;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner {
  width: 312px;
  min-width: 312px;
  padding: 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .banner-img {
  width: 108px;
  height: 96px;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .banner-discount {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: #191c1f;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner h2 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #475156;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .banner-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .banner-price p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #475156;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .banner-price span {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #191c1f;
  background: #ffffff;
  border-radius: 3px;
}
.category-items-container .category-items .category-item .subcategory-area .subcategory-inner .subcategory-banner .now-buy {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f94c10;
  border-radius: 2px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
}
.category-items-container .category-items .category-item:hover .category-item-link {
  background: #f2f4f5;
}
.category-items-container .category-items .category-item:hover .category-item-link svg {
  opacity: 1;
}
.category-items-container .category-items .category-item:hover .subcategory-area {
  opacity: 1;
  visibility: visible;
}
.category-items-container.show_category_items {
  opacity: 1;
  visibility: visible;
  top: 67px;
}/*# sourceMappingURL=style.css.map */



.left-menu-feat {
  width: 100%;
  height: 100vh;
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 16px;
}
.left-menu-feat h1 {
  color: orange;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
}
.left-menu-feat .navbar-menu {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 24px;
  gap: 6px;
}
.left-menu-feat .navbar-menu li {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  width: 100%;
  background-color: transparent;
  border-radius: 4px;
  list-style-type: none;
  transition: 50ms ease-in-out;
  border-left: 5px solid transparent;
}
.left-menu-feat .navbar-menu li a {
  text-decoration: none;
  font-size: 16px;
  color: black;
}
.left-menu-feat .navbar-menu li img {
  width: 14px;
  height: 14px;
  opacity: 70%;
}
.left-menu-feat .navbar-menu li .inner-submenu {
  transition: 80ms ease-in;
  opacity: 0;
  pointer-events: none;
  cursor: auto;
  position: absolute;
  left: 100%;
  z-index: 1000000;
  top: 0;
  border-radius: 4px;
  width: 150vh;
  max-height: 500px;
  background-color: #f5f5f5;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu {
  background-color: transparent;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
  border-radius: 4px;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  width: 100%;
  background-color: transparent;
  border-radius: 4px;
  gap: 18px;
  list-style-type: none;
  transition: 50ms ease-in-out;
  border-left: 5px solid transparent;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li a {
  text-decoration: none;
  font-size: 16px;
  color: black;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li img {
  min-width: 40px;
  height: 40px;
  opacity: 70%;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li .child-submenu {
  opacity: 0;
  transition: 80ms ease-in;
  pointer-events: none;
  cursor: auto;
  position: absolute;
  left: 100%;
  top: 0;
  border-radius: 4px;
  max-height: 500px;
  background-color: #f5f5f5;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 12px 60px;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li .child-submenu .list-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  background-color: transparent;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li .child-submenu .list-track span {
  text-wrap: nowrap;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li .child-submenu .list-track ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li .child-submenu .list-track ul a {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 16px;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li .child-submenu .list-track ul a::after {
  content: ".";
  position: absolute;
  left: 0;
  bottom: 0rem;
  font-size: 30px;
  font-weight: 500;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li:hover {
  border-left: 5px solid orange;
}
.left-menu-feat .navbar-menu li .inner-submenu .left-menu li:hover .child-submenu {
  opacity: 1;
  pointer-events: all;
}
.left-menu-feat .navbar-menu li:hover {
  border-left: 5px solid orange;
}
.left-menu-feat .navbar-menu li:hover .inner-submenu {
  opacity: 1;
  pointer-events: all;
}/*# sourceMappingURL=style.css.map */








/* LANGUAGE STYLE */
/* From Uiverse.io by gharsh11032000 */
.menu {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  width: fit-content;
  display: flex;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.menu .link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 14px;
    font-size: 15px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a3cff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .item {
    position: relative;
    background: #0c7bfa;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.menu .item .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  border-radius: 0 0 16px 16px;
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid #0c7bfa;
  background-color: #0c7bfa;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10000000000000;
  pointer-events: none;
  list-style: none;
}

.menu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  border-top: transparent;
  border-color: #fff;
}

.menu .item:hover .link {
  color: #ffffff;
  border-radius: 16px 16px 0 0;
}

.menu .item:hover .link::after {
  transform: scaleX(1);
  transform-origin: right;
}

.menu .item:hover .link svg {
  fill: #ffffff;
  transform: rotate(-180deg);
}

.submenu .submenu-item {
  width: 100%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link {
  display: block;
  padding: 6px 12px;
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
  border-bottom: none;
}

.submenu .submenu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  background-color: #0a3cff;
  z-index: -1;
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}

.submenu .submenu-link:hover {
  color: #ffffff;
}



.top-header-feature-wrapper {
  padding: 17px 108px;
  width: 100%;
  height: auto;
  background: #ffffff;
}
.top-header-feature-wrapper .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.top-header-feature-wrapper .top-header .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 158px;
}
.top-header-feature-wrapper .top-header .left .logo {
  width: 154px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-header-feature-wrapper .top-header .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-header-feature-wrapper .top-header .left .search-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.top-header-feature-wrapper .top-header .left .search-area .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
}
.top-header-feature-wrapper .top-header .left .search-area .location img {
  min-width: 14px;
  height: 14px;
  width: 14px;
  min-height: 14px;
}
.top-header-feature-wrapper .top-header .left .search-area .location span {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.top-header-feature-wrapper .top-header .left .search-area .form {
  background: #f5f5f5;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  --timing: 0.3s;
  --width-of-input: 200px;
  --height-of-input: 40px;
  --border-height: 2px;
  --input-bg: #fff;
  --border-color: #2f2ee9;
  --border-radius: 30px;
  --after-border-radius: 1px;
  position: relative;
  width: var(--width-of-input);
  height: var(--height-of-input);
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: var(--border-radius);
  transition: border-radius 0.5s ease;
}
.top-header-feature-wrapper .top-header .left .search-area .form button {
  border: none;
  background: none;
  color: #8b8ba7;
}
.top-header-feature-wrapper .top-header .left .search-area .form:before {
  content: "";
  position: absolute;
  background: var(--border-color);
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: var(--border-height);
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform var(--timing) ease;
}
.top-header-feature-wrapper .top-header .left .search-area .form:focus-within {
  border-radius: var(--after-border-radius);
}
.top-header-feature-wrapper .top-header .left .search-area .form:focus-within:before {
  transform: scale(1);
}
.top-header-feature-wrapper .top-header .left .search-area .form svg {
  width: 17px;
  margin-top: 3px;
}
.top-header-feature-wrapper .top-header .left .search-area .input {
  font-size: 0.9rem;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  background: #f5f5f5;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}
.top-header-feature-wrapper .top-header .left .search-area input:focus {
  outline: none;
}
.top-header-feature-wrapper .top-header .left .search-area input:not(:-moz-placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}
.top-header-feature-wrapper .top-header .left .search-area input:not(:placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}
.top-header-feature-wrapper .top-header .left .search-area .reset {
  border: none;
  background: none;
  opacity: 0;
  visibility: hidden;
}
.top-header-feature-wrapper .top-header .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 42px;
}
.top-header-feature-wrapper .top-header .right .telephone,
.top-header-feature-wrapper .top-header .right .email {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-decoration: none;
}
.top-header-feature-wrapper .top-header .right .telephone img,
.top-header-feature-wrapper .top-header .right .email img {
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
}
.top-header-feature-wrapper .top-header .right .telephone span,
.top-header-feature-wrapper .top-header .right .email span {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.top-header-feature-wrapper .top-header .right .email span {
  color: #2887bc;
}



.header-feature-wrapper {
  padding: 0 108px;
  width: 100%;
  background-color: #0c7bfa !important;
  height: auto;
}
.header-feature-wrapper .header-feature {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center !important;
}
.header-feature-wrapper .header-feature .header-item {
  text-decoration: none;
  padding: 18px;
  border: 1px solid rgba(255, 172, 172, 0.6196078431);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 57px;
  cursor: pointer;
  transition: 120ms ease-in;
  position: relative;
}
.header-feature-wrapper .header-feature .header-item .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.header-feature-wrapper .header-feature .header-item .left img {
  min-width: 24px;
  width: 24px;
  height: 24px;
  min-height: 24px;
}
.header-feature-wrapper .header-feature .header-item .left span {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}
.header-feature-wrapper .header-feature .header-item span {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}
.header-feature-wrapper .header-feature .header-item img {
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
  transition: transform 200ms ease-in-out;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog {
  z-index: 10000000000;
  transition: opacity 150ms ease-in-out, visibility 150ms ease-in-out;
  overflow-y: auto;
  padding: 40px 60px;
  position: absolute;
  top: 145px;
  height: 65vh;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1215686275);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 68px 24px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 19px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog .titlemain {
  text-decoration: none;
  color: #212121;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog .titlemain:hover {
  text-decoration: underline;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog nav .link {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: 100ms ease-in-out;
  text-decoration: none;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog nav .link:hover {
  color: red;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 150ms ease-in-out, visibility 150ms ease-in-out;
  top: 100%;
  left: 0;
  z-index: 100000000000 !important;
  background-color: #fff;
  border: 1px solid rgba(255, 172, 172, 0.6196078431);
  z-index: 10;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
  transition: background-color 150ms;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog {
  overflow-y: auto;
  padding: 40px 60px;
  position: absolute;
  top: 145px;
  height: 65vh;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1215686275);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 68px 24px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 19px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog .titlemain {
  text-decoration: none;
  color: #212121;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog .titlemain:hover {
  text-decoration: underline;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog nav .link {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: 100ms ease-in-out;
  text-decoration: none;
}
.header-feature-wrapper .header-feature .header-item .dropdown-inner-katalog .item-catalog nav .link:hover {
  color: red;
}
.header-feature-wrapper .header-feature .header-item:hover img:nth-child(2) {
  transform: rotate(180deg);
}
.header-feature-wrapper .header-feature .header-item:hover .dropdown-inner {
  opacity: 1;
  visibility: visible;
}
.header-feature-wrapper .header-feature .header-item:hover .dropdown-inner-katalog {
  opacity: 1;
  visibility: visible;
}
.header-feature-wrapper .header-feature .header-item:nth-child(1) {
  position: unset;
}


@media only screen and (max-width: 1150px) {
    .header-feature-wrapper {
        display: none !important;
    }
    .top-header-feature-wrapper {
        display: none !important;
    }
}




.left-menu-category {
  width: 100%;
  padding: 12px;
  height: 100vh;
  background-color: rgb(249 249 249);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
}
.left-menu-category ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.left-menu-category .menu-item {
  position: relative;
  width: 100%;
  padding: 8px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 100ms ease-in-out;
}
.left-menu-category .menu-item a {
  width: 100% !important;
  color: black;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
}
.left-menu-category .menu-item .dropdown {
  cursor: auto;
  width: 100vh;
  max-height: 60vh;
  overflow-y: auto;
  background-color: rgb(234 234 234);
  position: absolute;
  display: none;
  left: 100%;
  top: 0;
  animation: opensubmenu 150ms ease-in-out forwards normal;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 6px 24px;
  z-index: 111;
}
.left-menu-category .menu-item .dropdown li {
  display: flex;
  width: 100%;
  align-items: center;
}
.left-menu-category .menu-item .dropdown li a {
  border-radius: 4px;
  padding: 6px 8px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: black;
}
.left-menu-category .menu-item .dropdown li a:hover {
  background-color: rgb(239, 157, 157);
}
@keyframes opensubmenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.left-menu-category .menu-item:hover {
  background-color: rgb(252, 100, 100);
}
.left-menu-category .menu-item:hover .dropdown {
  display: flex;
}/*# sourceMappingURL=style.css.map */

.product-detail-wrapper .bottom-section {
    width: 100%; height: auto; display: flex; align-items: flex-start; justify-content: flex-start; flex-direction: column; gap: 36px;
}
.product-detail-wrapper .description {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 60px !important;
}
.product-detail-wrapper .description .product_description {
    width: 100%;
}
.product-detail-wrapper .description .product_description p {
    width: 100% !important;
    padding: 6px !important;
    font-size: 16px !important;
    line-height: 28px !important;
}
.product-detail-wrapper .top-section {
    display: grid; grid-template-columns: 23% 77%; justify-items: flex-start; align-items: flex-start; gap: 24px;
    width: 100% !important;
}
.product-detail-wrapper .product-detail .product-about-container {
    width: 100%;
    height: auto;
    background-color: #cecece21;
    margin-top: 42px;
    padding: 36px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.product-detail-wrapper .product-detail .product-about-container h2 {
    font-size: 18px;
    font-weight: 500;
    color: black;
}

.product-detail-wrapper .product-detail  .product-about-container .spec-desc-area {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 12px;
    gap: 6px;
}
.product-detail-wrapper  .bottom-section  .product-about-container .spec-desc-area .spec-line {
    width: 100%;
    height: auto;
    padding: 12px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-detail-wrapper  .bottom-section .product-about-container .spec-desc-area .spec-line span {
    font-weight: 400;
    color: #404040;
    font-size: 17px;
    letter-spacing: -0.3px;
}
.product-detail-wrapper   .bottom-section .product-about-container .spec-desc-area .spec-line strong {
    font-weight: 500;
    color: black;
    font-size: 17px;
    letter-spacing: -0.2px;
}

.product-detail-wrapper  .bottom-section .product-about-container h2 {
    width: 100%;
    text-align: start;
    color: #303030;
    font-weight: 500;
    letter-spacing: -0.4px;
}
.container-product-detail-feature .top-product-details-feature .placeholder {
    width: 100%;
    max-width: 450px;
}
.container-product-detail-feature .top-product-details-feature .main-image {
    display: flex;
    flex: 1;
    width: 50%;
}
.container-product-detail-feature .top-product-details-feature .main-image a {
    width: 100%;
}
.container-product-detail-feature .top-product-details-feature .main-image a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 36px;
    gap: 12px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .product-category {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0px;
    border-bottom: 1px solid #cecece90;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .product-category .title {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.4px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .product-category .category_name {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.5px;
}

.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .file-category .title {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.4px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .file-category .file_name {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.5px;
    color: mediumslateblue;
    transition: 60ms ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .file-category .file_name img {
    min-width: 32px;
    width: 32px;
    min-height: 32px;
    height: 32px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .file-category .file_name:hover {
    text-decoration: underline;
    color: deepblue;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .file-category .file_name:active {
    transform: scale(0.99);
}
.container-product-detail-feature .top-product-details-feature .right-product-details .file-download-area .file-category {
     width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0px;
    border-bottom: 1px solid #cecece90;
}


.container-product-detail-feature .top-product-details-feature .right-product-details .description .product_description p {
    line-height: 24px;
    font-size: 16px;
    color: #303030;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .description .product-description p {
    line-height: 36px;
    color: #303030;
    font-size: 16px;
    letter-spacing: -0.2px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .description .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.free-delivery-msg {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 40px;
    border-left: 8px solid #ff850b;
    padding-left: 16px;
    color: blue;
    animation: loopAnim 1s ease-in-out infinite alternate;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes loopAnim {
    0% {
        color: transparent;
        transform: translateX(0);
    }
    50% {
        color: orangered;
        transform: translateX(10px);
    }
    100% {
        color: transparent;
        transform: translateX(0);
    }
}

.container-product-detail-feature .top-product-details-feature .right-product-details .info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .description .info .free-delivery-msg {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 40px;
    border-left: 8px solid #ff850b;
    padding-left: 16px;
    color: blue;
    animation: loopAnim 1s ease-in-out infinite alternate;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes loopAnim {
    0% {
        color: transparent;
        transform: translateX(0);
    }
    50% {
        color: orangered;
        transform: translateX(10px);
    }
    100% {
        color: transparent;
        transform: translateX(0);
    }
}


.container-product-detail-feature .top-product-details-feature .right-product-details .description .info span {
  color: #606060;
  font-weight: 500;
  font-size: 16px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details #package-options {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details #package-options  div {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details #package-options div > input[type='radio'] {
    width: 24px;
    height: 24px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details #package-options div > label {
    font-size: 17px;
    line-height: 36px;
    color: #303030;
    font-weight: 500;
}


.container-product-detail-feature {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 24px;
}
.container-product-detail-feature .top-product-details-feature {
  width: 100%;
  height: auto !important;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.container-product-detail-feature .top-product-details-feature .left-imageproduct {
  width: 100%;
  height: 750px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.container-product-detail-feature .top-product-details-feature .left-imageproduct img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 150ms ease-in-out;
  transform: scale(1.0);
  cursor: pointer;
}
.container-product-detail-feature .top-product-details-feature .left-imageproduct .scaled-image {
    transform: scale(1.22);
}
.container-product-detail-feature .top-product-details-feature .left-imageproduct .result {
    width: 100%;
    height: 100%;
    position: relative;
}

.container-product-detail-feature .top-product-details-feature .left-imageproduct .result .original-img {
    z-index: 0 !important;
}
.container-product-detail-feature .top-product-details-feature .left-imageproduct .result .original-img {
      position: absolute;
    pointer-events: none;
    z-index: 100;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
}
.container-product-detail-feature .top-product-details-feature .right-product-details {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto !important;
  background: #ffffff;
  box-shadow: 0px 0px 11px 0px rgba(105, 105, 105, 0.1215686275);
  padding: 18px 26px;
  border-radius: 18px;
  flex-direction: column;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .description {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area {
  width: 100%;
  margin-top: 40px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area .top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area .top .price {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 24px;
  border-width: 1px, 0px, 1px, 0px;
  border-style: solid;
  border-color: #fafafa;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area .top .counter {
  margin-top: 10px;
  width: 100%;
  height: auto;
  padding: 13px 17px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #e4e7e9;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: space-between;
}
    .container-info-oils .info-oil-card {
        cursor: pointer !important;
    }
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area .top .counter strong {
  cursor: pointer;
  color: #191c1f;
  font-size: 18px;
  padding: 6px;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area .top .counter strong:active {
  transform: scale(0.97);
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area .top .counter span {
  color: #191c1f;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.container-product-detail-feature .top-product-details-feature .right-product-details .bottom-area a {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background-color: #c00000;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
  transition: 100ms ease-in-out;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */


@media only screen and (max-width: 968px) {
    .container-product-detail-feature .top-product-details-feature {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 36px !important;
    }
    .product-detail-wrapper {
        padding-left: 24px !important;
        padding-right: 24px !important;
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .container-info-oils {
        grid-template-columns: repeat(1, 1fr) !important;
        padding: 12px !important;
        gap: 16px !important;
    }

    .container-info-oils .info-oil-card a {
        font-size: 16px !important;
    }
}


.swiper-pagination-bullet-active {
    background-color: red !important;
}
.mobile-search-modal {
  opacity: 0;
  transition: 150ms ease-in-out;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateY(-15px);
  width: 100%;
  height: 100vh !important;
  z-index: 10000000;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.514) !important;
  justify-content: center;
  align-items: center;
}

.mobile-search-modal.activesearchmodal {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  transform: translateY(0);
}

.modal-content {
  width: 80%;
  margin: auto;
  border-radius: 16px;
  overflow-y: auto;
  height: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: white;
  padding: 20px;
}
.modal-content h1 {
  font-size: 17px;
  font-weight: 500;
  color: #3d4a5c;
}
.modal-content input {
  width: 100%;
  min-height: 60px;
  border-radius: 24px;
  margin-top: 16px;
  outline: none;
  padding-left: 24px;
  transition: 100ms ease-out;
  padding-right: 24px;
  border: 2px solid rgba(92, 92, 92, 0.2196078431);
}
.modal-content input:focus {
  border: 5px solid mediumslateblue;
}
.modal-content .search-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.modal-content .search-content .item {
  transition: 40ms ease-in-out;
  width: 95%;
  margin: auto;
  border-radius: 24px;
  height: 100px;
  margin-top: 18px;
  background-color: rgba(48, 48, 48, 0.0549019608);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  gap: 30px;
}
.modal-content .search-content .item .image-item {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30%;
  background-color: rgba(146, 131, 235, 0.24);
  overflow: hidden;
}
.modal-content .search-content .item .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.modal-content .search-content .item .right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.modal-content .search-content .item .right h1 {
  font-size: 16px;
  letter-spacing: -0.5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #3d4a5c;
}
.modal-content .search-content .item .right p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  font-size: 14px;
  color: #333333;
}
.modal-content .search-content .item:active {
  border: 2px solid rgba(0, 0, 0, 0.0392156863);
  background-color: rgba(206, 206, 206, 0.3490196078);
}

html,
body {
  width: 100%;
  height: auto;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
}

.wpicon {
    position: fixed;
    z-index: 1000;
    right: 120px;
    bottom: 60px;
    min-width: 60px;
    width: 60px;
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 100ms ease-in-out;
    animation: wpAnim 1.1s alternate-reverse infinite;
}
@keyframes wpAnim {
  from {
    opacity: 0.9;
    transform: scale(1.0);
  }
  to {
    transform: scale(0.8);
    opacity: 1.0;
  }
}

.wpicon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.emailicon {
  position: fixed;
  z-index: 1000;
  right: 120px;
  bottom: 145px;
  min-width: 60px;
  width: 60px;
  height: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 100ms ease-in-out;
  background-color: #0c7bfa;
  border-radius: 10%;
  padding: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  animation: emailAnim 1.1s alternate-reverse infinite;
}

@keyframes emailAnim {
  from {
    opacity: 0.9;
    transform: scale(0.8);
  }
  to {
    opacity: 1.0;
    transform: scale(1.0);
  }
}


.emailicon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.emailicon:hover {
    transform: scale(1.05);
}

@media only screen and (max-width: 568px) {
    .wpicon {
        bottom: 30px !important;
    right: 30px !important;
    min-width: 50px !important;
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 100ms ease-in-out;
    }
    .emailicon {
    right: 30px !important;
    bottom: 100px !important;
    min-width: 50px !important;
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    }
}

.top-header-wrapper {
  width: 100%;
  height: auto;
  background: #f7f8fb;
  padding: 12px 73px 12px 73px;
}
.top-header-wrapper .top-header {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-header .language-and-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px
}
.top-header .language-and-socials .language-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.top-header .language-and-socials .language-area a {
    text-decoration: none;
    color: #BFBFBF;
    font-weight: 500;
    font-size: 16px;
}
.top-header .language-and-socials .language-area a.current-lang {
    color: black;
}
.top-header-wrapper .top-header .infos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.top-header-wrapper .top-header .infos .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.top-header-wrapper .top-header .infos .info img {
  width: 24px;
  height: 24px;
}
.top-header-wrapper .top-header .infos .info a {
  transition: 100ms ease-in-out;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  text-decoration: none;
}
.top-header-wrapper .top-header .infos .info a:hover {
  color: #c00000;
}
.top-header-wrapper .top-header .language-and-socials .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
.top-header-wrapper .top-header .language-and-socials .socials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-header-wrapper .top-header .language-and-socials .socials a img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.header-wrapper {
  width: 100%;
  height: auto;
  background: #ffffff;
  box-shadow: 0px 2px 4px 0px rgba(105, 105, 105, 0.1215686275);
  padding: 8px 72px 8px 72px;
}
.header-wrapper .header {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .header .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
.header-wrapper .header .left .logo {
  transition: 100ms ease-in-out;
  width: 165px !important;
  height: 90px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header-wrapper .header .left .logo img {
  width: 100%;
  height: 100%;
  transition: 200ms ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-wrapper .header .left .logo:hover img {
  filter: contrast(0.5);
}
.header-wrapper .header .left .input-seach-and-category {
  width: auto;
  height: 44px;
  position: relative;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c00000;
  border-radius: 18px;
}
.header-wrapper .header .left .input-seach-and-category input[type=text] {
  width: 140px;
  height: 100%;
  border-radius: 18px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 2px solid transparent;
  outline: none;
  padding: 16px;
  transition: 150ms ease-in-out;
  border-right: 1px solid red;
}
.header-wrapper .header .left .input-seach-and-category input:focus {
  border: 2px solid #c00000;
}
.header-wrapper .header .left .input-seach-and-category select {
  transition: 150ms ease-in-out;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  height: 100%;
  padding: 0px 26px 0px 8px;
  margin-right: 10px;
  color: #212121;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  border: 2px solid transparent;
  outline: none;
  border-radius: 18px;
  background-image: url("../images/down.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 17px;
}
.header-wrapper .header .left .input-seach-and-category select option {
  text-align: start;
}
.header-wrapper .header .left .input-seach-and-category select:focus {
  border: 2px solid #c00000;
  border-radius: 0;
}
.header-wrapper .header .left .input-seach-and-category button {
  cursor: pointer;
  transition: 150ms ease-in-out;
  padding: 12px 10px 12px 12px;
  min-width: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #c00000;
  border: none;
  outline: none;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  border-radius: 0px 18px 18px 0px;
}
.header-wrapper .header .left .input-seach-and-category button img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.header-wrapper .header .left .input-seach-and-category button:hover {
  background-color: #fd6969;
}
.header-wrapper .header .left .input-seach-and-category button:active {
  transform: translateY(1px);
}
.header-wrapper .header .navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.header-wrapper .header .navbar a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: 150ms ease-in-out;
  line-height: 21px;
  color: #000000;
  text-align: left;
}
.header-wrapper .header .navbar a img {
  width: 14px;
  height: 14px;
}
.header-wrapper .header .navbar a:hover {
  color: #c00000;
}
.header-wrapper .header .navbar .drop-area {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
}
.header-wrapper .header .navbar .drop-area span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: 150ms ease-in-out;
  line-height: 21px;
  color: #000000;
  text-align: left;
}
.header-wrapper .header .navbar .drop-area span img {
  width: 14px;
  height: 14px;
}
.header-wrapper .header .navbar .drop-area span:hover {
  color: #c00000;
}
.header-wrapper .header .navbar .drop-area .dropdownmenu {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  opacity: 0;
  transform: translateY(-8px);
  transition: 150ms ease-in-out;
  z-index: 100;
  left: 0px;
  min-width: 251px;
  top: 40px;
  width: auto;
  height: auto;
  background: #ffffff;
  border: 0.5px solid #d6d6d6;
  padding: 0px 8px 0px 8px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.header-wrapper .header .navbar .drop-area .dropdownmenu a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  transition: 150ms ease-in-out;
}
.header-wrapper .header .navbar .drop-area .dropdownmenu a:hover {
  color: #fd6969;
}
.header-wrapper .header .navbar .drop-area .dropdownmenu.activedropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.hero-container-wrapper {
  width: 100%;
  height: auto;
  background-color: transparent;
  padding-left: 72px;
  padding-right: 72px;
  margin-top: 32px;
}
.hero-container-wrapper .hero-container {
  max-width: 1440px;
  margin: auto;
  gap: 26px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 23% 77% !important;
}




.product-detail-wrapper .left-feature {
     display: flex;
     width: 100%;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     background-color: #f5f5f5;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     padding: 24px;
     border-radius: 6px;
   }
   .product-detail-wrapper .left-feature .top-title {
     width: 100%;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: flex-start;
   }
   .product-detail-wrapper .left-feature .top-title h2 {
     color: orange;
     font-size: 26px;
     font-weight: 600;
     line-height: 39px;
     text-align: center;
   }
   .product-detail-wrapper .left-feature .main-categories {
     margin-top: 24px;
     width: 100%;
     height: auto;
     gap: 12px;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     background-color: transparent;
   }
   .product-detail-wrapper .left-feature .main-categories li {
     position: relative;
     width: 100%;
     list-style-type: none;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: 100ms ease-in-out;
     padding: 8px 8px;
     border-radius: 4px;
   }
   .product-detail-wrapper .left-feature .main-categories li img {
     width: 20px;
     height: 20px;
     min-height: 20px;
     min-width: 20px;
     transition: 200ms ease-in-out;
   }
   .product-detail-wrapper .left-feature .main-categories li a {
     transition: 100ms ease-in-out;
     width: 100%;
     text-decoration: none;
     color: #404040;
     font-weight: 500;
     font-size: 16px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu {
     opacity: 0;
     pointer-events: none;
     visibility: hidden;
     transition: opacity 200ms ease-in, visibility 200ms ease-in;
     width: 100%;
     background-color: #f5f5f5;
     padding: 16px;
     border-radius: 4px;
     position: absolute;
     top: 0;
     left: 100%;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     z-index: 1000;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li {
     width: 100%;
     list-style-type: none;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: 100ms ease-in-out;
     padding: 8px 8px;
     border-radius: 4px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li img {
     width: 20px;
     height: 20px;
     min-height: 20px;
     min-width: 20px;
     transition: 200ms ease-in-out;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li a {
     padding: 8px 8px;
     transition: 100ms ease-in-out;
     width: 100%;
     text-decoration: none;
     color: #404040;
     font-weight: 500;
     font-size: 16px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li:hover {
     background-color: white;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li:hover a {
     color: #202020;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li:hover img {
     transform: translateX(5px);
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child {
     opacity: 0;
     pointer-events: none;
     visibility: hidden;
     transition: opacity 200ms ease-in, visibility 200ms ease-in;
     width: 50vh;
     background-color: #f5f5f5;
     padding: 24px;
     border-radius: 4px;
     position: absolute;
     top: 0;
     left: 100%;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     justify-items: flex-start;
     align-items: flex-start;
     z-index: 1000;
     gap: 8px;
     max-height: 75vh;
     overflow-y: auto;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child li {
     width: 100%;
     list-style-type: none;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: 100ms ease-in-out;
     padding: 8px 8px;
     border-radius: 4px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child li img {
     width: 20px;
     height: 20px;
     min-height: 20px;
     min-width: 20px;
     transition: 200ms ease-in-out;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child li a {
     padding: 8px 8px;
     transition: 100ms ease-in-out;
     width: 100%;
     text-decoration: none;
     color: #404040;
     font-weight: 500;
     font-size: 18px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child li:hover {
     background-color: white;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child li:hover a {
     color: #202020;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child li:hover img {
     transform: translateX(5px);
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category {
     background-color: transparent;
     width: 100%;
     padding: 12px;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category a {
     color: #6b6b6b;
     font-size: 15px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category a:hover {
     color: rgb(162, 162, 162);
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category ul {
     width: 100%;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     gap: 3px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category ul li {
     width: 100%;
     background-color: transparent;
     font-weight: 400;
     font-size: 16px;
     color: #6b6b6b;
     padding: 0;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category ul li a {
     color: #202020;
     width: 100%;
     font-size: 16px;
     padding: 5px 12px;
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu-child .child-item-category ul li:hover a {
     color: #7b7a7a;
   }
   .product-detail-wrapper .left-feature .main-categories li:hover {
     background-color: white;
   }
   .product-detail-wrapper .left-feature .main-categories li:hover .submenu {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
   }
   .product-detail-wrapper .left-feature .main-categories li:hover a {
     color: #202020;
   }
   .product-detail-wrapper .left-feature .main-categories li:hover img {
     transform: translateX(5px);
   }
   .product-detail-wrapper .left-feature .main-categories li .submenu li:hover .submenu-child {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
   }/*# sourceMappingURL=style.css.map */


.hero-container-wrapper .hero-container .left-feature {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 24px;
  border-radius: 6px;
}
.hero-container-wrapper .hero-container .left-feature .top-title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-container-wrapper .hero-container .left-feature .top-title h2 {
  color: #0c7bfa;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
}
.hero-container-wrapper .hero-container .left-feature .main-categories {
  margin-top: 24px;
  width: 100%;
  height: auto;
  gap: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: transparent;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li {
  position: relative;
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 100ms ease-in-out;
  padding: 8px 8px;
  border-radius: 4px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transition: 200ms ease-in-out;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li a {
  transition: 100ms ease-in-out;
  width: 100%;
  text-decoration: none;
  color: #404040;
  font-weight: 500;
  font-size: 16px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 200ms ease-in, visibility 200ms ease-in;
  width: 100%;
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 1000;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 100ms ease-in-out;
  padding: 8px 8px;
  border-radius: 4px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transition: 200ms ease-in-out;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li a {
  padding: 8px 8px;
  transition: 100ms ease-in-out;
  width: 100%;
  text-decoration: none;
  color: #404040;
  font-weight: 500;
  font-size: 16px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li:hover {
  background-color: white;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li:hover a {
  color: #202020;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li:hover img {
  transform: translateX(5px);
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 200ms ease-in, visibility 200ms ease-in;
  width: 50vh;
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  z-index: 1000;
  gap: 8px;
  max-height: 75vh;
  overflow-y: auto;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child li {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 100ms ease-in-out;
  padding: 8px 8px;
  border-radius: 4px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child li img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transition: 200ms ease-in-out;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child li a {
  padding: 8px 8px;
  transition: 100ms ease-in-out;
  width: 100%;
  text-decoration: none;
  color: #404040;
  font-weight: 500;
  font-size: 18px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child li:hover {
  background-color: white;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child li:hover a {
  color: #202020;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child li:hover img {
  transform: translateX(5px);
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category {
  background-color: transparent;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category a {
  color: #6b6b6b;
  font-size: 15px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category a:hover {
  color: rgb(162, 162, 162);
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 3px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category ul li {
  width: 100%;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
  color: #6b6b6b;
  padding: 0;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category ul li a {
  color: #202020;
  width: 100%;
  font-size: 16px;
  padding: 5px 12px;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu-child .child-item-category ul li:hover a {
  color: #7b7a7a;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li:hover {
  background-color: white;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li:hover a {
  color: #202020;
}
.hero-container-wrapper .hero-container .left-feature .main-categories li:hover img {
  transform: translateX(5px);
}
.hero-container-wrapper .hero-container .left-feature .main-categories li .submenu li:hover .submenu-child {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}/*# sourceMappingURL=style.css.map */




@media only screen and (max-width: 1200px) {
    .categories-page-wrapper .categories-page .categories-filtered-area {
        flex-direction: column !important;
    }
    .categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .categories-page-wrapper .categories-page .categories-filtered-area .filter-main {
        width: 100% !important;
    }
    .categories-page-wrapper .categories-page .categories-filtered-area .right {
        width: 100% !important;
    }
}

@media only screen and (max-width: 968px) {
    .category-items-container {
        display: none !important;
    }
    .hero-container-wrapper .hero-container .right {
        height: 300px !important;
    }
}

@media only screen and (max-width: 568px) {
    .categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.categories-page-wrapper .categories-page .categories-filtered-area .left-feature {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 24px;
  border-radius: 6px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .top-title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .top-title h2 {
  color: orange;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories {
  margin-top: 24px;
  width: 100%;
  height: auto;
  gap: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: transparent;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li {
  position: relative;
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 100ms ease-in-out;
  padding: 8px 8px;
  border-radius: 4px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transition: 200ms ease-in-out;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li a {
  transition: 100ms ease-in-out;
  width: 100%;
  text-decoration: none;
  color: #404040;
  font-weight: 500;
  font-size: 16px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 200ms ease-in, visibility 200ms ease-in;
  width: 100%;
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 1000;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 100ms ease-in-out;
  padding: 8px 8px;
  border-radius: 4px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transition: 200ms ease-in-out;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li a {
  padding: 8px 8px;
  transition: 100ms ease-in-out;
  width: 100%;
  text-decoration: none;
  color: #404040;
  font-weight: 500;
  font-size: 16px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li:hover {
  background-color: white;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li:hover a {
  color: #202020;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li:hover img {
  transform: translateX(5px);
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 200ms ease-in, visibility 200ms ease-in;
  width: 100%;
  min-width: 470px;
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1000;
  gap: 8px;
  max-height: 75vh;
  overflow-y: auto;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child li {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 100ms ease-in-out;
  padding: 8px 8px;
  border-radius: 4px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child li img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  transition: 200ms ease-in-out;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child li a {
  padding: 8px 8px;
  transition: 100ms ease-in-out;
  width: 100%;
  text-decoration: none;
  color: #404040;
  font-weight: 500;
  font-size: 18px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child li:hover {
  background-color: white;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child li:hover a {
  color: #202020;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child li:hover img {
  transform: translateX(5px);
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category {
  background-color: transparent;
  width: 100%;
  padding: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category a {
  color: #6b6b6b;
  font-size: 15px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category a:hover {
  color: rgb(162, 162, 162);
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 3px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category ul li {
  width: 100%;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
  color: #6b6b6b;
  padding: 0;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category ul li a {
  color: #202020;
  width: 100%;
  font-size: 16px;
  padding: 5px 12px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu-child .child-item-category ul li:hover a {
  color: #7b7a7a;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li:hover {
  background-color: white;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li:hover a {
  color: #202020;
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li:hover img {
  transform: translateX(5px);
}
.categories-page-wrapper .categories-page .categories-filtered-area .left-feature .main-categories li .submenu li:hover .submenu-child {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}/*# sourceMappingURL=style.css.map */


















.categories-page-wrapper .categories-page .categories-filtered-area .left {
     background: #f5f5f5;
     display: flex;
     width: 100%;
     border-radius: 18px;
     align-items: flex-start;
     position: relative !important;
     z-index: 1000000000 !important;
     justify-content: flex-start;
     flex-direction: column;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu {
     width: 100%;
     padding: 18px;
     height: auto;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .title {
     color: #c00000;
     font-size: 26px;
     font-weight: 600;
     line-height: 39px;
     text-align: center;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area {
     width: 100%;
     margin-top: 6px;
     height: auto;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item span {
       transition: 150ms ease-in-out;
       color: #212121;
       font-size: 16px;
       font-weight: 400;
       line-height: 24px;
       text-align: left;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item {
       -webkit-user-select: none;
       -moz-user-select: none;
       user-select: none;
       cursor: pointer;
       transition: 150ms ease-in-out;
       text-decoration: none;
       padding: 12px;
       padding-left: 0;
       display: flex;
       width: 100%;
       position: relative;
       align-items: center;
       justify-content: space-between;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item {
     -webkit-user-select: none;
        -moz-user-select: none;
             user-select: none;
     cursor: pointer;
     transition: 150ms ease-in-out;
     text-decoration: none;
     padding: 12px;
     padding-left: 0;
     display: flex;
     width: 100%;
     position: relative;
     align-items: center;
     justify-content: space-between;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item span {
     transition: 150ms ease-in-out;
     color: #212121;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
     text-align: left;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item img {
       width: 16px !important;
       height: 16px !important;
       z-index: 0 !important;
       position: absolute !important;
       right: 0 !important;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .redright {
     display: none;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .submenu {
     transform: translateY(-15px);
     position: absolute;
     opacity: 0;
     pointer-events: none;
     -webkit-user-select: none;
        -moz-user-select: none;
             user-select: none;
     transition: 90ms ease-in-out;
     z-index: 100000000000 !important;
     right: -268px;
     top: 0;
     min-width: 251px !important;
     max-width: 251px !important;
     height: auto;
     padding: 0px 8px 0px 8px;
     background: #f5f5f5;
     border-radius: 18px;
     border: 0.5px solid #d6d6d6;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .linka {
       text-decoration: none;
       color: black;
       width: 100%;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .submenu a:active {
       transform: scale(1.0) !important;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .submenu a {
     padding: 10px;
     color: #212121;
     font-weight: 400;
     font-size: 14px;
     text-align: start;
     text-decoration: none;
     transition: 100ms ease-in-out;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .submenu a:hover {
     color: #fd6969;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .submenu::after {
     content: "";
     width: 50px;
     height: 100%;
     background-color: transparent;
     position: absolute;
     left: -1.5rem;
     z-index: -1;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item .submenu.active {
     opacity: 1;
     pointer-events: all;
     -webkit-user-select: auto;
        -moz-user-select: auto;
             user-select: auto;
     transform: translateY(0);
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item:hover span {
     color: #fd6969;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item:hover .default {
     display: none !important;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item:hover .redright {
     display: block !important;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .left .menu .navigation-area .item:active {
     transform: scale(1.0) !important;
   }














.hero-container-wrapper .hero-container .left {
  background: #f5f5f5;
  display: flex;
  border-radius: 18px;
  align-items: flex-start;
  position: relative !important;
  z-index: 1000000000 !important;
  justify-content: flex-start;
  flex-direction: column;
}
.hero-container-wrapper .hero-container .left .menu {
  width: 100%;
  padding: 18px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.hero-container-wrapper .hero-container .left .menu .title {
  color: #c00000;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area {
  width: 100%;
  margin-top: 6px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item span {
    transition: 150ms ease-in-out;
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    transition: 150ms ease-in-out;
    text-decoration: none;
    padding: 12px;
    padding-left: 0;
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 150ms ease-in-out;
  text-decoration: none;
  padding: 12px;
  padding-left: 0;
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item span {
  transition: 150ms ease-in-out;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item img {
    width: 16px !important;
    height: 16px !important;
    z-index: 0 !important;
    position: absolute !important;
    right: 0 !important;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .redright {
  display: none;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .submenu {
  transform: translateY(-15px);
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 90ms ease-in-out;
  z-index: 100000000000 !important;
  right: -268px;
  top: 0;
  min-width: 251px !important;
  max-width: 251px !important;
  height: auto;
  padding: 0px 8px 0px 8px;
  background: #f5f5f5;
  border-radius: 18px;
  border: 0.5px solid #d6d6d6;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .linka {
    text-decoration: none;
    color: black;
    width: 100%;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .submenu a:active {
    transform: scale(1.0) !important;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .submenu a {
  padding: 10px;
  color: #212121;
  font-weight: 400;
  font-size: 14px;
  text-align: start;
  text-decoration: none;
  transition: 100ms ease-in-out;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .submenu a:hover {
  color: #fd6969;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .submenu::after {
  content: "";
  width: 50px;
  height: 100%;
  background-color: transparent;
  position: absolute;
  left: -1.5rem;
  z-index: -1;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item .submenu.active {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  transform: translateY(0);
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item:hover span {
  color: #fd6969;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item:hover .default {
  display: none !important;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item:hover .redright {
  display: block !important;
}
.hero-container-wrapper .hero-container .left .menu .navigation-area .item:active {
  transform: scale(1.0) !important;
}


.hero-container-wrapper .hero-container .right {
    width: 100%;
    height: 600px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container-wrapper .hero-container .right .swiper {
  width: 100%;
  height: 100%;
}


.hero-container-wrapper .hero-container .right .swiper .swiper-slide {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container-wrapper .hero-container .right .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


   .container-info-oils {
        width: 100%;
        max-width: 1440px;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: flex-start;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
        margin: 36px auto auto;
      }
      .container-info-oils .info-oil-card {
          border-radius: 4px;
        width: 100%;
        height: 100%;
        background-color: transparent;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 1px solid #cecece;
        padding: 24px 28px;
        gap: 130px;
      }
      .container-info-oils .info-oil-card a {
        color: #404040;
        text-decoration: none;
        font-size: 24px;
      }
      .container-info-oils .info-oil-card ul {
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
      }
      .container-info-oils .info-oil-card ul li {
        list-style-type: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        text-transform: lowercase;
      }
      .container-info-oils .info-oil-card ul li a {
          text-decoration: none;
        line-height: 24px;
        font-size: 15px;
        letter-spacing: -0.3px;
        color: #303030;
      }
      .container-info-oils .info-oil-card ul li .dot {
          position: relative;
          bottom: 1px;
          min-width: 6px;
          width: 6px;
          height: 6px;
          min-height: 6px;
          background-color: blue;
          border-radius: 50%;
      }





.best-selling-products-wrapper {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin-top: 100px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}


.best-selling-products-wrapper .swiper {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
}

.best-selling-products-wrapper .swiper h1 {
  color: #000000;
  font-weight: 500;
  font-size: 42px;
}

.best-selling-products-wrapper .swiper-wrapper {
  display: flex;
  margin-top: 80px;
}

.best-selling-products-wrapper .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.best-selling-products-wrapper .grid-item {
  position: relative;
  border-radius: 16px;
  width: 100%;
  max-width: 320px;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.best-selling-products-wrapper .grid-item .original-img {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
}

.best-selling-products-wrapper .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-selling-products-wrapper .content-sell a {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background-color: #c00000;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 100ms ease-in-out;
    cursor: pointer;
}
.best-selling-products-wrapper .content-sell {
    position: absolute;
    z-index: 100;
    bottom: 16px;
    width: calc(100% - 16px);
    margin: auto;
    height: 100%;
    max-height: 220px;
    background-color: rgb(0 0 0 / 39%);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    gap: 5px;
    padding: 10px !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

..more_button {
    background-color: #0c7bfa !important;
}

.discount-products-wrapper .content-sell .more_button {
    background-color: #0c7bfa !important;
}

.discount-products-wrapper .content-sell a {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background-color: #c00000;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 100ms ease-in-out;
    cursor: pointer;
}
.discount-products-wrapper {
     width: 100%;
     height: auto;
     background-color: transparent;
     margin-top: 100px;
     padding-left: 72px;
     padding-right: 72px;
   }

   .discount-products-wrapper .swiper {
     max-width: 1440px;
     margin: auto;
     width: 100%;
     height: auto;
   }

   .discount-products-wrapper .swiper h1 {
     color: #000000;
     font-weight: 500;
     font-size: 42px;
   }

   .discount-products-wrapper .swiper-wrapper {
     display: flex;
   }

   .discount-products-wrapper .swiper-slide {
     width: auto;
     display: flex;
     justify-content: center;
     align-items: center;
   }

   .discount-products-wrapper .grid-item {
     position: relative;
     border-radius: 16px;
     width: 100%;
     max-width: 320px; /* Swiper'daki her slide'ın genişliğini kontrol edin */
     height: 434px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
   }
   .discount-products-wrapper .grid-item .original-img {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
   }

   .discount-products-wrapper .grid-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   .best-selling-products-wrapper .content-sell span {
       font-size: 19px !important;
       color: #fff !important;
       font-weight: 500;
   }
   .best-selling-products-wrapper .content-sell .more_button {
       background-color: #0c7bfa !important;
   }
   .discount-products-wrapper .content-sell span {
       font-size: 19px !important;
       color: #000 !important;
       font-weight: 500;
   }
   .discount-products-wrapper .content-sell {
     position: absolute;
     z-index: 100;
     bottom: 16px;
     width: calc(100% - 16px);
     margin: auto;
     height: auto;
     background-color: rgba(255, 0, 0, 0%);
     backdrop-filter: blur(100px);
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     gap: 5px;
     padding: 10px !important;
   }

   .swiper-button-next,
   .swiper-button-prev {
     color: #000;
   }



.swiper-button-next,
.swiper-button-prev {
    color: #000;
}


.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product img {
    object-fit: cover !important;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .original-img {
        position: absolute;
    pointer-events: none;
    z-index: 100;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell .special-two {
    color: #F5F5F5;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product {
    position: relative;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .original-img {
        position: absolute;
    pointer-events: none;
    z-index: 100;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
}

.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell .special-one {
    min-width: 71px;
    height: 26px;
    background-color: #950202;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    z-index: 100000;
    top: -250px;
    right: 16px;
    border-radius: 8px;
    display: flex;
    align-content: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell .special-one {
    min-width: 71px;
    height: 26px;
    background-color: #950202;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    z-index: 100000;
    top: -220px;
    right: 16px;
    border-radius: 8px;
    display: flex;
    align-content: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell .price {
  color: #fafafa;
  font-weight: 400;
  font-size: 16px;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell a {
  text-decoration: none;
  margin-top: 9px;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #c00000;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell a:hover {
  background-color: #950202;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.2) 30.65%, #000000 235.25%);
}

.daily-prize-container {
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding-left: 72px;
  padding-right: 72px;
}
.daily-prize-container .daily-prize {
  border-radius: 18px;
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: 575px;
  background: #f7f8fb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.daily-prize-container .daily-prize .pro-img {
  position: absolute;
  left: -2.5rem;
  top: -5.5rem;
  width: 531px;
  height: 531px;
}
.daily-prize-container .daily-prize .container-about-the-prize {
  width: 100%;
  height: 100%;
  background-color: #f7f8fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
  padding-left: 420px;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 63px;
  text-align: left;
  color: #000000;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text span {
  color: #212121;
  font-weight: 400;
  font-size: 36px;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text p {
  color: #575757;
  width: 100%;
  max-width: 454px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text .prices {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text .prices span {
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  text-align: left;
  color: #000000;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text .prices article {
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  text-align: left;
  color: #d6d6d6;
  text-decoration: line-through;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text a {
  margin-top: 16px;
  padding: 10px;
  background-color: #c00000;
  border-radius: 8px;
  color: #ffffff;
  transition: 100ms ease-in-out;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  z-index: 100;
  text-decoration: none;
}
.daily-prize-container .daily-prize .container-about-the-prize .left-text a:hover {
  background-color: #fd6969;
}
.daily-prize-container .daily-prize .container-about-the-prize .right-times {
  padding-right: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 28px;
}
.daily-prize-container .daily-prize .container-about-the-prize .right-times .end-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.daily-prize-container .daily-prize .container-about-the-prize .right-times .end-time span {
  color: #c00000;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.daily-prize-container .daily-prize .container-about-the-prize .right-times .end-time img {
  width: 32px;
  height: 32px;
}
.daily-prize-container .daily-prize .container-about-the-prize .right-times .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.daily-prize-container .daily-prize .container-about-the-prize .right-times .bottom span {
  background: #ffffff;
  padding: 10px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #000000;
}

.discount-products-wrapper {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin-top: 100px;
  padding-left: 72px;
  padding-right: 72px;
}
.discount-products-wrapper .discount-products {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.discount-products-wrapper .discount-products h1 {
  color: #000000;
  font-weight: 500;
  font-size: 42px;
}
.discount-products-wrapper .discount-products .griddiscountproduct {
  width: 100%;
  height: auto;
  margin-top: 32px;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper {
  width: 100%;
  height: 100%;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide {
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.2) 30.65%, #000000 235.25%);
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell {
  position: absolute;
  z-index: 100;
  bottom: 16px;
  width: calc(100% - 16px);
  margin: auto;
  height: auto;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(25px) !important;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell span {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell .price {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell a {
  margin-top: 9px;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #c00000;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell a:hover {
  background-color: #950202;
}
.discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.2) 30.65%, #000000 235.25%);
}

.company-and-news-wrapper {
  width: 100%;
  height: auto;
  margin-top: 100px;
  background-color: transparent;
  padding-left: 72px;
  padding-right: 72px;
}
.company-and-news-wrapper .company-and-news {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.company-and-news-wrapper .company-and-news h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 63px;
  text-align: left;
  color: #000000;
}
.company-and-news-wrapper .company-and-news .container-newscompany {
  width: 100%;
  margin-top: 32px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image {
  width: 100%;
  height: 306px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 100;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 3px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-prev, .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-next {
    background-color: #0c7bfa !important;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content a {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  background-color: #0c7bfa !important;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: 100ms ease-in-out;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content a:hover {
  background-color: #fd6969;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content .date {
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content .title {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  margin-top: 24px;
  gap: 24px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item {
  text-decoration: none;
  width: 100%;
  height: 379px;
  background: #f7f8fb;
  border-radius: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content {
  position: absolute;
  z-index: 100;
  bottom: 0;
  width: 100%;
  height: 192px;
  background-color: #f7f8fb;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding-left: 28px;
  padding-top: 28px;
  padding-right: 28px;
  gap: 6px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content .date {
  color: #bfbfbf;
  font-weight: 400;
  font-size: 14px;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content h1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content p {
  font-size: 16px;
  font-weight: 400;
  color: #989898;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.testimonials-wrapper {
  width: 100%;
  margin-top: 100px;
  background-color: transparent;
  height: auto;
  padding-left: 72px;
  padding-right: 72px;
}
.testimonials-wrapper .testimonials {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.testimonials-wrapper .testimonials h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 63px;
  color: #000000;
}
.testimonials-wrapper .testimonials .carousel-area {
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
.testimonials-wrapper .testimonials .carousel-area .swiper {
  width: 100%;
  height: 100%;
  position: initial;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-prev,
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-next {
  background-color: #c00000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  z-index: 10000;
  top: calc(50% + 100px);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-prev {
  background-image: url("../images/left.svg");
  left: 610px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-next {
  background-image: url("../images/rightt.svg");
  right: 610px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-next:after,
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-prev:after {
  content: none;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-pagination {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #c00000;
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-pagination .swiper-pagination-current {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  padding-right: 5px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-pagination .swiper-pagination-total {
  font-size: 18px;
  padding-left: 5px;
  font-weight: 400;
  color: #000000;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: 256px;
  background: #f7f8fb;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px;
  border-radius: 18px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .profile {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username span {
  color: #c00000;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article span:nth-child(1) {
  color: rgba(60, 60, 67, 0.8509803922);
  font-weight: 400;
  font-size: 18px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article span:nth-child(2) {
  color: rgba(60, 60, 67, 0.8509803922);
  font-weight: 400;
  font-size: 18px;
  text-decoration: underline;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .right-stars {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .right-stars img {
  width: 14px;
  height: 14px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .text {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 21px;
}
.testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .text p {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: start;
  -webkit-line-clamp: 4;
}

.bottomcard-wrapper {
  width: 100%;
  height: auto;
  padding-left: 72px;
  padding-right: 72px;
  background-color: transparent;
  margin-top: 100px;
}
.bottomcard-wrapper .bottomcard {
  width: 100%;
  display: grid;
  max-width: 1440px;
  background-color: transparent;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.bottomcard-wrapper .bottomcard .card-item {
  width: 100%;
  gap: 11px;
  height: 178px;
  border-radius: 18px;
  border: 1px solid #f2f2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}
.bottomcard-wrapper .bottomcard .card-item img {
  width: 48px;
  height: 48px;
}
.bottomcard-wrapper .bottomcard .card-item span {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
}
.bottomcard-wrapper .bottomcard .card-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  color: #989898;
  font-size: 14px;
  font-weight: 300;
  -webkit-line-clamp: 2;
}

.footer-wrapper {
  margin-top: 100px;
  width: 100%;
  background: #f7f8fb;
  height: auto !important;
  padding-left: 72px;
  padding-right: 72px;
  padding-top: 56px;
  padding-bottom: 25px;
  border-top: 9px solid;
  border-image-source: linear-gradient(270deg, #0c7bfa 0%, #ffa7a7 100%) !important;
  border-image-slice: 1;
}
.footer-wrapper .footer {
  position: relative;
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.footer-wrapper .footer .head-footer-and-links {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-wrapper .footer .head-footer-and-links .left-logo {
  width: 126px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-wrapper .footer .head-footer-and-links .left-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-wrapper .footer .head-footer-and-links .navbar {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
}
.footer-wrapper .footer .head-footer-and-links .navbar a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #1e1f1e;
  transition: 100ms ease-in-out;
}
.footer-wrapper .footer .head-footer-and-links .navbar a:hover {
  color: #fd6969;
}
.footer-wrapper .footer .head-footer-and-links .navbar .aboutlink,
.footer-wrapper .footer .head-footer-and-links .navbar .categories,
.footer-wrapper .footer .head-footer-and-links .navbar .productlinks {
  flex-direction: column;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-wrapper .footer .head-footer-and-links .navbar .aboutlink span,
.footer-wrapper .footer .head-footer-and-links .navbar .categories span,
.footer-wrapper .footer .head-footer-and-links .navbar .productlinks span {
  color: #1e1f1e;
  font-weight: 700;
  font-size: 16px;
  margin-top: 0px;
}
.footer-wrapper .footer .head-footer-and-links .navbar .aboutlink a,
.footer-wrapper .footer .head-footer-and-links .navbar .categories a,
.footer-wrapper .footer .head-footer-and-links .navbar .productlinks a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #9797aa;
  transition: 150ms ease-in-out;
}
.footer-wrapper .footer .head-footer-and-links .navbar .aboutlink a:hover,
.footer-wrapper .footer .head-footer-and-links .navbar .categories a:hover,
.footer-wrapper .footer .head-footer-and-links .navbar .productlinks a:hover {
  color: #fd6969;
}
.footer-wrapper .footer .bottom {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wrapper .footer .bottom p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}
.footer-wrapper .footer .bottom p .special {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding-left: 7px !important;
  font-weight: 400;
  line-height: 20px;
  color: #c00000;
}
.footer-wrapper .footer .bottom p .special a {
  color: #c00000;
  text-decoration: none;
  transition: 100ms ease-in-out;
  padding-left: 7px !important;
}
.footer-wrapper .footer .bottom p .special a:hover {
  color: #fd6969;
}
.footer-wrapper .footer .bottom .socials {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
}
.footer-wrapper .footer .bottom .socials a {
  width: 24px;
  height: 24px;
}
.footer-wrapper .footer .subscription-btn {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 192px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.footer-wrapper .footer .subscription-btn h1 {
  color: #1e1f1e;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.2px;
}
.footer-wrapper .footer .subscription-btn .input-btn {
  max-width: 355px;
  width: 100%;
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-wrapper .footer .subscription-btn .input-btn input {
  height: 100%;
  width: 100%;
  padding-right: 80px;
  padding-left: 20px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  transition: 100ms ease-in-out;
}
.footer-wrapper .footer .subscription-btn .input-btn input::-moz-placeholder {
  color: #71717a;
  font-weight: 400;
  font-size: 16px;
}
.footer-wrapper .footer .subscription-btn .input-btn input::placeholder {
  color: #71717a;
  font-weight: 400;
  font-size: 16px;
}
.footer-wrapper .footer .subscription-btn .input-btn button {
  position: absolute;
  right: 0;
  background-color: #0c7bfa !important;
  border-radius: 0px 8px 8px 0px;
  padding: 10px;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
}
.footer-wrapper .footer .subscription-btn .input-btn button:hover {
  background-color: #fd6969;
}

.who-we-area-section-wrapper {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.who-we-area-section-wrapper .who-we-are-section {
  width: 100%;
  min-height: 1350px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
}
.who-we-area-section-wrapper .who-we-are-section .top-navigators {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.who-we-area-section-wrapper .who-we-are-section .top-navigators a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 18px;
  transition: 100ms ease-in-out;
  border: 1px solid #212121;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}
.who-we-area-section-wrapper .who-we-are-section .top-navigators a:hover {
  background-color: #212121;
  color: #fff;
}
.who-we-area-section-wrapper .who-we-are-section .top-navigators a.active {
  color: #c00000;
  border: 1px solid #c00000;
  cursor: auto;
}
.who-we-area-section-wrapper .who-we-are-section .top-navigators a.active:hover {
  background-color: transparent !important;
  color: #c00000 !important;
  cursor: auto !important;
}
.who-we-area-section-wrapper .who-we-are-section .about-section {
  width: 100%;
  min-height: 802px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  margin-top: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.who-we-area-section-wrapper .who-we-are-section .about-section h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 63px;
  color: #ffffff;
}
.who-we-area-section-wrapper .who-we-are-section .about-content {
  max-width: 1440px;
  margin: auto;
  position: absolute;
  padding: 46px 136px;
  width: 70%;
  z-index: 1000;
  height: auto;
  background: #ffffff;
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  top: 538px !important;
  border-radius: 18px;
}
.who-we-area-section-wrapper .who-we-are-section .about-content h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 54px;
  color: #212121;
}
.who-we-area-section-wrapper .who-we-are-section .about-content .description {
  width: 100%;
  max-width: 744px;
  gap: 14px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.who-we-area-section-wrapper .who-we-are-section .about-content .description p,
.who-we-area-section-wrapper .who-we-are-section .about-content .description ul,
.who-we-area-section-wrapper .who-we-are-section .about-content .description li,
.who-we-area-section-wrapper .who-we-are-section .about-content .description ol {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #6c6c6b;
}
.who-we-area-section-wrapper .who-we-are-section .about-content .description span,
.who-we-area-section-wrapper .who-we-are-section .about-content .description h3,
.who-we-area-section-wrapper .who-we-are-section .about-content .description h4,
.who-we-area-section-wrapper .who-we-are-section .about-content .description h5,
.who-we-area-section-wrapper .who-we-are-section .about-content .description h2 {
  color: #6c6c6b;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}
.who-we-area-section-wrapper .who-we-are-section .about-content .description a,
.who-we-area-section-wrapper .who-we-are-section .about-content .description link,
.who-we-area-section-wrapper .who-we-are-section .about-content .description code,
.who-we-area-section-wrapper .who-we-are-section .about-content .description pre {
  text-decoration: none;
  color: #6c6c6b;
}

.accordion-section-wrapper {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.accordion-section-wrapper .accordion-section {
  width: 100%;
  min-height: 1350px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
}
.accordion-section-wrapper .accordion-section .top-navigators {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.accordion-section-wrapper .accordion-section .top-navigators a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 18px;
  transition: 100ms ease-in-out;
  border: 1px solid #212121;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}
.accordion-section-wrapper .accordion-section .top-navigators a:hover {
  background-color: #212121;
  color: #fff;
}
.accordion-section-wrapper .accordion-section .top-navigators a.active {
  color: #0c7bfa !important;
  border: 1px solid #0c7bfa !important;
  cursor: auto;
}
.accordion-section-wrapper .accordion-section .top-navigators a.active:hover {
  background-color: transparent !important;
  color: #c00000 !important;
  cursor: auto !important;
}
.accordion-section-wrapper .accordion-section .about-section {
  width: 100%;
  min-height: 802px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  margin-top: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.accordion-section-wrapper .accordion-section .about-section h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 63px;
  color: #ffffff;
}
.accordion-section-wrapper .accordion-section .accordion-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 1016px;
  margin: auto;
  position: absolute;
  padding: 46px 136px;
  width: 70%;
  z-index: 1000;
  height: auto;
  background: #ffffff;
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  top: 568px;
  border-radius: 18px;
}
.accordion-section-wrapper .accordion-section .accordion-content h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 54px;
  color: #212121;
}
.accordion-section-wrapper .accordion-section .accordion-content .description {
  width: 100%;
  max-width: 572px;
  gap: 14px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 12px;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container {
  width: 100%;
  height: auto;
  padding: 16px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container .head {
  cursor: pointer;
  width: 100%;
  height: auto;
  display: flex;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #d6d6d6;
  align-items: center;
  justify-content: space-between;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container .head img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container .head span {
  color: #212121;
  font-weight: 600;
  font-size: 20px;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container .content {
  width: 100%;
  display: none;
  padding-top: 12px;
  padding-bottom: 12px;
  animation: contentAnim 200ms ease-in-out forwards normal;
}
@keyframes contentAnim {
  from {
    transform: translateY(-5px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container .content p {
  color: #212121;
  font-size: 16px;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container.active .content {
  display: block;
}
.accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container.active .head img {
  transform: rotate(180deg);
}
.accordion-section-wrapper .accordion-section .accordion-content .if-you-no-question {
  margin-top: 45px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.accordion-section-wrapper .accordion-section .accordion-content .if-you-no-question span {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1px;
}
.accordion-section-wrapper .accordion-section .accordion-content .if-you-no-question a {
  transition: 150ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: #c00000;
  border-radius: 8px;
  text-decoration: none;
}
.accordion-section-wrapper .accordion-section .accordion-content .if-you-no-question a span {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}
.accordion-section-wrapper .accordion-section .accordion-content .if-you-no-question a img {
  width: 24px;
  height: 24px;
}
.accordion-section-wrapper .accordion-section .accordion-content .if-you-no-question a:hover {
  background-color: #fd6969;
  transform: scale(0.99);
}

.allproduct-page-wrapper {
  width: 100%;
  height: auto;
  padding-left: 72px;
  padding-right: 72px;
  margin-top: 25px;
}
.allproduct-page-wrapper .allproduct-page {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.allproduct-page-wrapper .allproduct-page .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.allproduct-page-wrapper .allproduct-page .navigators-showers a,
.allproduct-page-wrapper .allproduct-page .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.allproduct-page-wrapper .allproduct-page .navigators-showers img {
  width: 18px;
  height: 18px;
}
.allproduct-page-wrapper .allproduct-page .navigators-showers :nth-child(5) {
  color: #0c7bfa !important;
}
.allproduct-page-wrapper .allproduct-page .top-navigators {
  width: 100%;
  margin-top: 24px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.allproduct-page-wrapper .allproduct-page .top-navigators a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 18px;
  transition: 100ms ease-in-out;
  border: 1px solid #212121;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}
.allproduct-page-wrapper .allproduct-page .top-navigators a:hover {
  background-color: #212121;
  color: #fff;
}
.allproduct-page-wrapper .allproduct-page .top-navigators a.active {
  color: #0c7bfa !important;
  border: 1px solid #0c7bfa !important;
  cursor: auto;
}
.allproduct-page-wrapper .allproduct-page .top-navigators a.active:hover {
  background-color: transparent !important;
  color: #c00000 !important;
  cursor: auto !important;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 40px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products select {
  min-width: 306px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.0588235294);
  border: 3px solid transparent;
  outline: none;
  padding-left: 10px;
  border-radius: 18px;
  padding-right: 10px;
  color: #333333;
  font-weight: 600;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/dropdownred.svg");
  background-size: 18px;
  background-position: 275px;
  background-repeat: no-repeat;
  transition: 150ms ease-in-out;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products select:focus {
  border: 3px solid #fd6969;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container {
  margin-top: 40px;
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product {
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}

.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell {
  position: absolute;
  z-index: 100;
  bottom: 16px;
  width: calc(100% - 16px);
  margin: auto;
  height: auto;
  background-color: rgb(255 0 0 / 0%);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 10px !important;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell .more_button {
    background-color: #0c7bfa !important;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell span {
  color: #fff !important;
  font-weight: 500;
  font-size: 18px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell .price {
  color: #fafafa !important;
  font-weight: 400;
  font-size: 16px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell a {
  margin-top: 9px;
  width: 100%;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  background-color: #c00000;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell a:hover {
  background-color: #950202;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.2) 30.65%, #000000 235.25%);
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 56px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers {
  border-radius: 6px;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers .reverse,
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers .next {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers .reverse img,
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers .next img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers a {
  list-style-type: none;
  width: 28px;
  height: 28px;
  display: flex;
  text-decoration: none;
  transition: 100ms ease-in-out;
  color: #3d4a5c;
  align-items: center;
  justify-content: center;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers a li {
  text-decoration: none;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers .active-pag {
  background-color: #0c7bfa !important;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers .active-pag li {
  color: #f9fafb;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .left-numbers a:hover {
  background-color: #fd6969;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .right-pag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .right-pag span {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  color: #afbaca;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .right-pag article {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .right-pag article span {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  justify-content: center;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .right-pag article :nth-child(1) {
  border-radius: 6px 0px 0px 6px;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination .right-pag article :nth-child(2) {
  border-radius: 0px 6px 6px 0px;
  border-left: 1px solid #d7dfe9;
  color: #afbaca;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.discount-page-wrapper {
  width: 100%;
  height: auto;
  padding-left: 72px;
  padding-right: 72px;
  margin-top: 25px;
}
.discount-page-wrapper .discount-page {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.discount-page-wrapper .discount-page .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.discount-page-wrapper .discount-page .navigators-showers a,
.discount-page-wrapper .discount-page .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.discount-page-wrapper .discount-page .navigators-showers img {
  width: 18px;
  height: 18px;
}
.discount-page-wrapper .discount-page .navigators-showers :nth-child(5) {
  color: #c00000;
}
.discount-page-wrapper .discount-page .top-navigators {
  width: 100%;
  margin-top: 24px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.discount-page-wrapper .discount-page .top-navigators a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 18px;
  transition: 100ms ease-in-out;
  border: 1px solid #212121;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}
.discount-page-wrapper .discount-page .top-navigators a:hover {
  background-color: #212121;
  color: #fff;
}
.discount-page-wrapper .discount-page .top-navigators a.active {
  color: #c00000;
  border: 1px solid #c00000;
  cursor: auto;
}
.discount-page-wrapper .discount-page .top-navigators a.active:hover {
  background-color: transparent !important;
  color: #c00000 !important;
  cursor: auto !important;
}
.discount-page-wrapper .discount-page .container-with-all-products {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 40px;
}
.discount-page-wrapper .discount-page .container-with-all-products select {
  min-width: 306px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.0588235294);
  border: 3px solid transparent;
  outline: none;
  padding-left: 10px;
  border-radius: 18px;
  padding-right: 10px;
  color: #333333;
  font-weight: 600;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/dropdownred.svg");
  background-size: 18px;
  background-position: 275px;
  background-repeat: no-repeat;
  transition: 150ms ease-in-out;
}
.discount-page-wrapper .discount-page .container-with-all-products select:focus {
  border: 3px solid #fd6969;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container {
  margin-top: 40px;
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product {
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product .content-sell {
  position: absolute;
  z-index: 100;
  bottom: 16px;
  width: calc(100% - 16px);
  margin: auto;
  height: auto;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product .content-sell span {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product .content-sell .price {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product .content-sell a {
  margin-top: 9px;
  width: 100%;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  background-color: #c00000;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product .content-sell a:hover {
  background-color: #950202;
}
.discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.2) 30.65%, #000000 235.25%);
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 56px;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers {
  border-radius: 6px;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers .reverse,
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers .next {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers .reverse img,
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers .next img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers a {
  list-style-type: none;
  width: 28px;
  height: 28px;
  display: flex;
  text-decoration: none;
  transition: 100ms ease-in-out;
  color: #3d4a5c;
  align-items: center;
  justify-content: center;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers a li {
  text-decoration: none;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers .active-pag {
  background-color: #c00000;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers .active-pag li {
  color: #f9fafb;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .left-numbers a:hover {
  background-color: #fd6969;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .right-pag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .right-pag span {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  color: #afbaca;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .right-pag article {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .right-pag article span {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  justify-content: center;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .right-pag article :nth-child(1) {
  border-radius: 6px 0px 0px 6px;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.discount-page-wrapper .discount-page .container-with-all-products .pagination-area .pagination .right-pag article :nth-child(2) {
  border-radius: 0px 6px 6px 0px;
  border-left: 1px solid #d7dfe9;
  color: #afbaca;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.categories-page-wrapper {
  width: 100%;
  height: auto;
  max-width: 1560px;
  margin: 24px auto auto;
  padding-left: 72px;
  padding-right: 72px;
}
.categories-page-wrapper .categories-page {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.categories-page-wrapper .categories-page .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.categories-page-wrapper .categories-page .navigators-showers a,
.categories-page-wrapper .categories-page .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.categories-page-wrapper .categories-page .navigators-showers img {
  width: 18px;
  height: 18px;
}
.categories-page-wrapper .categories-page .navigators-showers :nth-child(5) {
  color: #c00000;
}
.categories-page-wrapper .categories-page select {
  margin-top: 24px;
  min-width: 306px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.0588235294);
  border: 3px solid transparent;
  outline: none;
  padding-left: 10px;
  border-radius: 18px;
  padding-right: 10px;
  color: #333333;
  font-weight: 600;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/dropdownred.svg");
  background-size: 18px;
  background-position: 275px;
  background-repeat: no-repeat;
  transition: 150ms ease-in-out;
}
.categories-page-wrapper .categories-page select:focus {
  border: 3px solid #fd6969;
}
.categories-page-wrapper .categories-page .categories-filtered-area {
  width: 100%;
  height: auto;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  justify-content: flex-start;
}
.categories-page-wrapper .categories-page .categories-filtered-area .filter-main {
    width: 22%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
}

.categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter {
     width: 100%;
     height: auto;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     gap: 24px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .sort-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content {
     padding: 18px;
     width: 100%;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     background: #f5f5f5;
     flex-direction: column;
     border-radius: 18px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .sort-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content h1 {
     color: #c00000;
     font-weight: 600;
     font-size: 26px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .sort-content .navigators,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators {
     width: 100%;
     margin-top: 6px;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
     gap: 6px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .sort-content .navigators a,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators a,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators a,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators a,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators a {
     text-decoration: none;
     padding: 10px;
     font-weight: 400;
     font-size: 16px;
     transition: 150ms ease-in-out;
     color: #212121;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .sort-content .navigators a:hover,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators a:hover,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators a:hover,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators a:hover,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators a:hover {
     color: #fd6969;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .sort-content .navigators .active,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .active,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .active,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .active,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .active {
     color: #c00000;
     font-weight: 400;
     font-size: 16px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content {
     box-shadow: 0px 0px 10px 0px rgba(105, 105, 105, 0.1215686275);
     background-color: transparent;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content h1,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content h1 {
     width: 100%;
     text-align: center;
     color: #000000;
     font-weight: 500;
     font-size: 16px;
     background: #ffffff;
     border-bottom: 1px solid #f1f1f1;
     padding-bottom: 10px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check {
     width: 100%;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check .name,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check .name,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check .name,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check .name {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     gap: 8px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check .name span,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check .name span,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check .name span,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check .name span {
     color: #000000;
     font-weight: 400;
     font-size: 16px;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check .name input[type=checkbox],
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check .name input[type=checkbox],
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check .name input[type=checkbox],
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check .name input[type=checkbox] {
     width: 24px;
     height: 24px;
     border: 1px solid #090909;
     border-radius: 6px;
     -webkit-appearance: none;
        -moz-appearance: none;
             appearance: none;
     position: relative;
     background: #fff;
     cursor: pointer;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check .name input[type=checkbox]::after,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check .name input[type=checkbox]::after,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check .name input[type=checkbox]::after,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check .name input[type=checkbox]::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     height: 100%;
     border-radius: 3px;
     opacity: 0;
     transition: opacity 0.2s ease;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check .name input[type=checkbox]:checked::after,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check .name input[type=checkbox]:checked::after,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check .name input[type=checkbox]:checked::after,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check .name input[type=checkbox]:checked::after {
     content: "";
     background-repeat: no-repeat;
     background-position: center;
     background-size: 70%;
     background-color: #c00000;
     background-image: url("../images/check.svg");
     color: #090909;
     opacity: 1;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .navigators .check .lastcount,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .navigators .check .lastcount,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .navigators .check .lastcount,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .navigators .check .lastcount {
     color: #5c5c5c;
     font-weight: 400;
     font-size: 16px;
     text-align: right;
   }
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .megapixel-content .check,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .color-content .check,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .darklight-content .check,
   .categories-page-wrapper .categories-page .categories-filtered-area .filter-main .leftfilter .power-content .check {
     padding: 5px 0px;
   }
.categories-page-wrapper .categories-page .categories-filtered-area .right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 78%;
  height: auto;
  background-color: transparent;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container {
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
  position: relative;
  z-index: 0;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product {
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .original-img {
        position: absolute;
    pointer-events: none;
    z-index: 150;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .original-img {
        position: absolute;
    pointer-events: none;
    z-index: 100;
    top: 28px;
    right: 28px;
    width: 85px;
    height: auto;
    filter: brightness(1.5) contrast(2.5);
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell {
    position: absolute;
    z-index: 100;
    bottom: 16px;
    width: calc(100% - 16px);
    margin: auto;
    height: auto;
    background-color: rgb(255 0 0 / 0%);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 10px !important;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell .more_button {
    background-color: #0c7bfa !important;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell span {
  color: #fff !important;
  font-weight: 500;
  font-size: 18px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell .price {
  color: #fff !important;
  font-weight: 400;
  font-size: 16px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell a {
  margin-top: 9px;
  width: 100%;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  background-color: #c00000;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell a:hover {
  background-color: #950202;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.2) 30.65%, #000000 235.25%);
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 56px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers {
  border-radius: 6px;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers .reverse,
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers .next {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers .reverse img,
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers .next img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers a {
  list-style-type: none;
  width: 28px;
  height: 28px;
  display: flex;
  text-decoration: none;
  transition: 100ms ease-in-out;
  color: #3d4a5c;
  align-items: center;
  justify-content: center;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers a li {
  text-decoration: none;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers .active-pag {
  background-color: #c00000;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers .active-pag li {
  color: #f9fafb;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .left-numbers a:hover {
  background-color: #fd6969;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .right-pag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .right-pag span {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  color: #afbaca;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .right-pag article {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .right-pag article span {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  justify-content: center;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .right-pag article :nth-child(1) {
  border-radius: 6px 0px 0px 6px;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .pagination-area .pagination .right-pag article :nth-child(2) {
  border-radius: 0px 6px 6px 0px;
  border-left: 1px solid #d7dfe9;
  color: #afbaca;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.companynews-page-wrapper {
  width: 100%;
  height: auto;
  max-width: 1560px;
  margin: 24px auto auto;
  padding-left: 72px;
  padding-right: 72px;
}
.companynews-page-wrapper .companynews-page {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.companynews-page-wrapper .companynews-page .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.companynews-page-wrapper .companynews-page .navigators-showers a,
.companynews-page-wrapper .companynews-page .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.companynews-page-wrapper .companynews-page .navigators-showers img {
  width: 18px;
  height: 18px;
}
.companynews-page-wrapper .companynews-page .navigators-showers :nth-child(5) {
  color: #c00000;
}
.companynews-page-wrapper .companynews-page .navigators-showers .red {
  color: #0c7bfa !important;
  font-weight: 400;
  font-size: 12px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 24px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left {
  width: 50%;
  height: 425px;
  display: flex;
  overflow: hidden;
  align-items: center;
  border-radius: 18px;
  justify-content: center;
  position: relative;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  left: 26px;
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .date {
  border-radius: 18px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .date span {
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts {
  max-width: 482px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts h1 {
  color: #f7f8fb;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts p {
  color: #eeeeee;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts a {
  text-decoration: none;
  max-width: 131px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 100ms ease-in-out;
  margin-top: 8px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts a span {
  transition: 100ms ease-in-out;
  color: #c00000;
  font-weight: 400;
  font-size: 16px;
  text-align: start;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts a img {
  width: 40px;
  height: 24px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts a:hover span {
  color: #fd6969 !important;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000 -28.94%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right {
  width: 50%;
  height: 426px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 26px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .leftimg {
  position: relative;
  min-width: 288px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .leftimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .leftimg .date {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  border-radius: 18px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .leftimg .date span {
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text h1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: left;
  color: #0d0d0d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text p {
  color: #9797aa;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text a {
  text-decoration: none;
  max-width: 131px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 100ms ease-in-out;
  margin-top: 10px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text a span {
  transition: 100ms ease-in-out;
  color: #c00000;
  font-weight: 400;
  font-size: 16px;
  text-align: start;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text a img {
  width: 40px;
  height: 24px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text a:hover span {
  color: #fd6969 !important;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news {
  margin-top: 59px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 50px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid {
  transition: 100ms ease-in-out;
  text-decoration: none;
  border-radius: 18px;
  width: 100%;
  background: #f7f8fb;
  width: 100%;
  height: 379px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .img-wrapper {
  width: 100%;
  height: 187px;
  display: flex;
  border-radius: 18px 18px 0px 0px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .text-area {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: 32px;
  padding-top: 28px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .text-area span {
  color: #bfbfbf;
  font-weight: 400;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .text-area h1 {
  transition: 150ms ease-in-out;
  width: 100%;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  max-width: 296px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .text-area p {
  width: 100%;
  max-width: 360px;
  color: #989898;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid:hover .text-area h1 {
  color: #fd6969;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 56px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers {
  border-radius: 6px;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers .reverse,
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers .next {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers .reverse img,
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers .next img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers a {
  list-style-type: none;
  width: 28px;
  height: 28px;
  display: flex;
  text-decoration: none;
  transition: 100ms ease-in-out;
  color: #3d4a5c;
  align-items: center;
  justify-content: center;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers a li {
  text-decoration: none;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers .active-pag {
  background-color: #c00000;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers .active-pag li {
  color: #f9fafb;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .left-numbers a:hover {
  background-color: #fd6969;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .right-pag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .right-pag span {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  color: #afbaca;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .right-pag article {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dfe9;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .right-pag article span {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  justify-content: center;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .right-pag article :nth-child(1) {
  border-radius: 6px 0px 0px 6px;
  color: #3d4a5c;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination .right-pag article :nth-child(2) {
  border-radius: 0px 6px 6px 0px;
  border-left: 1px solid #d7dfe9;
  color: #afbaca;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.companynews-inner-wrapper {
  width: 100%;
  height: auto;
  max-width: 1560px;
  margin: 24px auto auto;
  padding-left: 72px;
  padding-right: 72px;
}
.companynews-inner-wrapper .companynews-inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.companynews-inner-wrapper .companynews-inner .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.companynews-inner-wrapper .companynews-inner .navigators-showers a,
.companynews-inner-wrapper .companynews-inner .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.companynews-inner-wrapper .companynews-inner .navigators-showers img {
  width: 18px;
  height: 18px;
}
.companynews-inner-wrapper .companynews-inner .navigators-showers :nth-child(5) {
  color: #c00000;
}
.companynews-inner-wrapper .companynews-inner .navigators-showers .red {
  color: #c00000;
  font-weight: 400;
  font-size: 12px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 24px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .news-title-and-date {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  flex-direction: column;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .news-title-and-date h1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
  text-align: left;
  max-width: 525px;
  color: #0d0d0d;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .news-title-and-date span {
  color: #9797aa;
  font-weight: 400;
  font-size: 14px;
  text-align: start;
  color: #9797aa;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner {
  margin-top: 24px;
  width: 67%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .image-wrapper {
  width: 100%;
  height: 362px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 38px;
  gap: 12px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner p,
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner li,
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner ul,
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner ol,
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner code,
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner pre {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other {
  width: 33%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other h2 {
  font-size: 26px;
  font-weight: 400;
  line-height: 39px;
  text-align: left;
  color: #0d0d0d;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other {
  width: 100%;
  margin-top: 20px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  row-gap: 24px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other {
  width: 100%;
  height: 139px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .leftimg {
  position: relative;
  min-width: 164px;
  height: 139px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .leftimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
    min-width: 164px;
    max-width: 164px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .leftimg .date {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  border-radius: 18px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .leftimg .date span {
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text {
  display: flex;
  align-items: flex-start;
    width: 100%;
    height: 100%;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text h1 {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: #0d0d0d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text p {
  color: #9797aa;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text a {
  text-decoration: none;
  max-width: 131px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 100ms ease-in-out;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text a span {
  transition: 100ms ease-in-out;
  color: #c00000;
  font-weight: 400;
  font-size: 14px;
  text-align: start;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text a img {
  width: 40px;
  height: 24px;
}
.companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text a:hover span {
  color: #fd6969 !important;
}

.contact-wrapper {
  width: 100%;
  height: auto;
  max-width: 1560px;
  margin: 24px auto auto;
  padding-left: 72px;
  padding-right: 72px;
}
.contact-wrapper .contact {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-wrapper .contact .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.contact-wrapper .contact .navigators-showers a,
.contact-wrapper .contact .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.contact-wrapper .contact .navigators-showers img {
  width: 18px;
  height: 18px;
}
.contact-wrapper .contact .navigators-showers :nth-child(5) {
  color: #c00000;
}
.contact-wrapper .contact .navigators-showers .red {
  color: #0c7bfa !important;
  font-weight: 400;
  font-size: 12px;
}
.contact-wrapper .contact .contact-and-info {
  width: 100%;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.contact-wrapper .contact .contact-and-info .left-contact {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #bdbdbd;
  width: 55%;
  height: auto;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 140.5px;
  padding-right: 140.5px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-wrapper .contact .contact-and-info .left-contact .title {
  width: 100%;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.contact-wrapper .contact .contact-and-info .left-contact .title h1 {
  color: #000000;
  font-weight: 500;
  font-size: 42px;
  text-align: center;
}
.contact-wrapper .contact .contact-and-info .left-contact .title p {
  color: #9797aa;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.contact-wrapper .contact .contact-and-info .left-contact form {
  margin-top: 40px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.contact-wrapper .contact .contact-and-info .left-contact form input,
.contact-wrapper .contact .contact-and-info .left-contact form textarea {
  background: #f9f9f9;
  border: 1px solid rgba(33, 33, 33, 0.2862745098);
  outline: none;
  transition: 50ms ease-in-out;
  border-radius: 18px;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
}
.contact-wrapper .contact .contact-and-info .left-contact form textarea {
  min-height: 140px;
}
.contact-wrapper .contact .contact-and-info .left-contact form input:focus {
  border: 3px solid rgba(61, 74, 92, 0.4196078431);
  background: #ffffff !important;
}
.contact-wrapper .contact .contact-and-info .left-contact form input::-moz-placeholder {
  color: #828282;
  font-weight: 400;
  font-size: 16px;
}
.contact-wrapper .contact .contact-and-info .left-contact form input::placeholder {
  color: #828282;
  font-weight: 400;
  font-size: 16px;
}
.contact-wrapper .contact .contact-and-info .left-contact form textarea:focus {
  border: 3px solid rgba(61, 74, 92, 0.4196078431);
  background: #ffffff !important;
}
.contact-wrapper .contact .contact-and-info .left-contact form textarea::-moz-placeholder {
  color: #828282;
  font-weight: 400;
  font-size: 16px;
}
.contact-wrapper .contact .contact-and-info .left-contact form textarea::placeholder {
  color: #828282;
  font-weight: 400;
  font-size: 16px;
}
.contact-wrapper .contact .contact-and-info .left-contact form .name-and-surname {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
.contact-wrapper .contact .contact-and-info .left-contact form .name-and-surname input {
  width: 100%;
  height: 100%;
}
.contact-wrapper .contact .contact-and-info .left-contact form button[type=submit] {
  width: 100%;
  height: auto;
  cursor: pointer;
  background: #0c7bfa !important;
  padding: 15px 0px;
  border: 1px solid transparent;
  outline: none;
  border-radius: 8px;
  transition: 150ms ease-in-out;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.contact-wrapper .contact .contact-and-info .left-contact form button[type=submit]:hover {
  background-color: #fd6969;
}
.contact-wrapper .contact .contact-and-info .left-contact form button[type=submit]:active {
  transform: scale(0.99);
  background-color: #0c7bfa !important;
}
.contact-wrapper .contact .contact-and-info .right-information {
  width: 45%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info {
  border-radius: 18px;
  width: 100%;
  height: 499px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 50px 61px;
  background: #ffffff;
  border: 1px solid #bdbdbd;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info .info-items {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info .info-items .item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info .info-items .item span {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: left;
  color: #212121;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info .info-items .item .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info .info-items .item .title img {
  width: 24px;
  height: 24px;
}
.contact-wrapper .contact .contact-and-info .right-information .top-info .info-items .item .title a {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  text-decoration: none;
  color: #000000;
}
.contact-wrapper .contact .contact-and-info .right-information .map {
  width: 100%;
  height: 222px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.contact-wrapper .contact .contact-and-info .right-information .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.product-detail-wrapper {
  width: 100%;
  height: auto;
  max-width: 1560px;
  margin: 24px auto auto;
  padding-left: 72px;
  padding-right: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.product-detail-wrapper .left {
    width: 100% !important;
  background: #f5f5f5;
  display: flex;
  border-radius: 18px;
  align-items: flex-start;
  position: relative !important;
  z-index: 1000000000 !important;
  justify-content: flex-start;
  flex-direction: column;
}
.product-detail-wrapper .left .menu {
  width: 100%;
  padding: 18px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-detail-wrapper .left .menu .title {
  color: #c00000;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  text-align: center;
}
.product-detail-wrapper .left .menu .navigation-area {
  width: 100%;
  margin-top: 6px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-detail-wrapper .left .menu .navigation-area .item span {
  transition: 150ms ease-in-out;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.product-detail-wrapper .left .menu .navigation-area .item {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 150ms ease-in-out;
  text-decoration: none;
  padding: 12px;
  padding-left: 0;
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.product-detail-wrapper .left .menu .navigation-area .item {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 150ms ease-in-out;
  text-decoration: none;
  padding: 12px;
  padding-left: 0;
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.product-detail-wrapper .left .menu .navigation-area .item span {
  transition: 150ms ease-in-out;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.product-detail-wrapper .left .menu .navigation-area .item img {
  width: 16px !important;
  height: 16px !important;
  z-index: 0 !important;
  position: absolute !important;
  right: 0 !important;
}
.product-detail-wrapper .left .menu .navigation-area .item .redright {
  display: none;
}
.product-detail-wrapper .left .menu .navigation-area .item .submenu {
  transform: translateY(-15px);
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: 90ms ease-in-out;
  z-index: 100000000000 !important;
  right: -268px;
  top: 0;
  min-width: 251px !important;
  max-width: 251px !important;
  height: auto;
  padding: 0px 8px 0px 8px;
  background: #f5f5f5;
  border-radius: 18px;
  border: 0.5px solid #d6d6d6;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-detail-wrapper .left .menu .navigation-area .item .linka {
  text-decoration: none;
  color: black;
  width: 100%;
}
.product-detail-wrapper .left .menu .navigation-area .item .submenu a:active {
  transform: scale(1) !important;
}
.product-detail-wrapper .left .menu .navigation-area .item .submenu a {
  padding: 10px;
  color: #212121;
  font-weight: 400;
  font-size: 14px;
  text-align: start;
  text-decoration: none;
  transition: 100ms ease-in-out;
}
.product-detail-wrapper .left .menu .navigation-area .item .submenu a:hover {
  color: #fd6969;
}
.product-detail-wrapper .left .menu .navigation-area .item .submenu::after {
  content: "";
  width: 50px;
  height: 100%;
  background-color: transparent;
  position: absolute;
  left: -1.5rem;
  z-index: -1;
}
.product-detail-wrapper .left .menu .navigation-area .item .submenu.active {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
  transform: translateY(0);
}
.product-detail-wrapper .left .menu .navigation-area .item:hover span {
  color: #fd6969;
}
.product-detail-wrapper .left .menu .navigation-area .item:hover .default {
  display: none !important;
}
.product-detail-wrapper .left .menu .navigation-area .item:hover .redright {
  display: block !important;
}
.product-detail-wrapper .left .menu .navigation-area .item:active {
  transform: scale(1) !important;
}




.product-detail-wrapper .product-detail {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 24px;
}
.product-detail-wrapper .product-detail .present-container {
    width: 100%;
    height: 160px;
    background-color: #cecece90;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2.5rem;
}

.product-detail-wrapper .product-detail .navigators-showers {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.product-detail-wrapper .product-detail .navigators-showers a,
.product-detail-wrapper .product-detail .navigators-showers span {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 12px;
}
.product-detail-wrapper .product-detail .navigators-showers img {
  width: 18px;
  height: 18px;
}
.product-detail-wrapper .product-detail .navigators-showers :nth-child(5) {
  color: #c00000;
}
.product-detail-wrapper .product-detail .container-product-detail {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 24px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details {
  width: 100%;
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  gap: 41px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip {
  max-width: 880px;
  width: 100%;
  height: 425px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .left-slides {
  min-width: 80px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 35px;
}

 .product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .left-slides .slide.selected {
  border: 5px solid #ffa6a6 !important;
}

.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .left-slides .slide {
  background-color: transparent !important;
  cursor: pointer;
  width: 80px !important;
  height: 80px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
}


.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .left-slides .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 14px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .result {
  width: 100%;
  height: 421px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background-color: #d3c6c6;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .result {
    background-color: #d3c6c630;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .leftswip .result img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail {
  min-width: 324px;
  display: flex;
  background: #ffffff;
  box-shadow: 0px 0px 11px 0px rgba(105, 105, 105, 0.1215686275);
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 18px 26px;
  border-radius: 18px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .info span {
  color: #606060;
  font-weight: 500;
  font-size: 16px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .info span:nth-child(1) {
  color: #0eba15 !important;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .price {
  width: 100%;
  height: auto;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-width: 1px, 0px, 1px, 0px;
  border-style: solid;
  border-color: #fafafa;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .counter {
  margin-top: 10px;
  width: 100%;
  height: auto;
  padding: 13px 17px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 2px solid #E4E7E9;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: space-between;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .counter strong {
  cursor: pointer;
  color: #191C1F;
  font-size: 18px;
  padding: 6px;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .counter strong:active {
  transform: scale(0.97);
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail .counter span {
  color: #191C1F;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail a {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background-color: #c00000;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 100ms ease-in-out;
  cursor: pointer;
}
.product-detail-wrapper .product-detail .container-product-detail .top-product-details .right-detail a:hover {
  background-color: #950202;
}
.product-detail-wrapper .product-detail .container-product-detail .main-details {
  width: 100%;
  margin-top: 66px;
  padding: 24px 73px;
  background: #FAFAFA;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-detail-wrapper .product-detail .container-product-detail .main-details .item-detail {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail-wrapper .product-detail .container-product-detail .main-details .item-detail strong {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
}
.product-detail-wrapper .product-detail .container-product-detail .main-details .item-detail span {
  color: #9797AA;
  font-weight: 400;
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */
.get-basket-btn {
    display: flex;
    align-items: center;
    color:white;
}


