@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;
}

.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;
}

.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-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 .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
.top-header-wrapper .top-header .socials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-header-wrapper .top-header .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: 109px;
  height: 78px;
  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;
  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% auto;
}
.hero-container-wrapper .hero-container .left {
  background: #f5f5f5;
  display: flex;
  border-radius: 18px;
  align-items: flex-start;
  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 {
  -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: 20px;
  height: 20px;
}
.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: 100;
  right: -268px;
  top: 0;
  min-width: 251px;
  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 .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(0.99);
}
.hero-container-wrapper .hero-container .right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.hero-container-wrapper .hero-container .right .image {
  width: 100%;
  height: 269px;
  display: flex;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-container-wrapper .hero-container .right .image img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-container-wrapper .hero-container .right .bottom {
  width: 100%;
  height: 362px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.hero-container-wrapper .hero-container .right .bottom .image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.hero-container-wrapper .hero-container .right .bottom .image img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
}

.best-selling-products-wrapper {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin-top: 100px;
  padding-left: 72px;
  padding-right: 72px;
}
.best-selling-products-wrapper .best-selling-products {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.best-selling-products-wrapper .best-selling-products h1 {
  color: #000000;
  font-weight: 500;
  font-size: 42px;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct {
  width: 100%;
  height: auto;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item {
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 434px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .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;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell span {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell .price {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell button {
  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 button: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;
}
.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 button {
  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 button: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;
}
.company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content a {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  background-color: #c00000;
  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, #c00000 0%, #ffa7a7 100%);
  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;
  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;
}
.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: #c00000;
  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: #c00000;
  border: 1px solid #c00000;
  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: #c00000;
}
.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: #c00000;
  border: 1px solid #c00000;
  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;
  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: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell span {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}
.allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell .price {
  color: #000000;
  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: #c00000;
}
.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 .leftfilter {
  width: 22%;
  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 .leftfilter .sort-content,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .sort-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content h1 {
  color: #c00000;
  font-weight: 600;
  font-size: 26px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .sort-content .navigators,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .sort-content .navigators a,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators a,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators a,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators a,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .sort-content .navigators a:hover,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators a:hover,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators a:hover,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators a:hover,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content .navigators a:hover {
  color: #fd6969;
}
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .sort-content .navigators .active,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators .active,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .active,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .active,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content .navigators .active {
  color: #c00000;
  font-weight: 400;
  font-size: 16px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content h1,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .navigators .check,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .navigators .check .name,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .name,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .name,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .navigators .check .name span,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .name span,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .name span,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content .navigators .check .name span {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators .check .name input[type=checkbox],
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .name input[type=checkbox],
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .name input[type=checkbox],
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .navigators .check .name input[type=checkbox]::after,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .name input[type=checkbox]::after,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .name input[type=checkbox]::after,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .navigators .check .name input[type=checkbox]:checked::after,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .name input[type=checkbox]:checked::after,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .name input[type=checkbox]:checked::after,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .navigators .check .lastcount,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .lastcount,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .lastcount,
.categories-page-wrapper .categories-page .categories-filtered-area .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 .leftfilter .megapixel-content .check,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .check,
.categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .check,
.categories-page-wrapper .categories-page .categories-filtered-area .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;
}
.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 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 .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;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell span {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}
.categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product .content-sell .price {
  color: #000000;
  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: #c00000;
  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;
}
.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;
  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: 3;
  line-clamp: 3;
}
.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: #c00000;
  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: #c00000;
  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: #c00000;
}
.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;
}

@media only screen and (max-width: 1500px) {
  .header-wrapper .header .left {
    gap: 6px;
  }
  .header-wrapper .header .navbar a {
    text-wrap: nowrap;
  }
}
@media only screen and (max-width: 1400px) {
        .header-feature-wrapper {
        padding: 0px 6px !important
    }
    .top-header-feature-wrapper {
        padding: 12px 24px !important;
    }
  .header-wrapper .header .navbar {
    gap: 0px;
  }
  .header-wrapper .header .left .input-seach-and-category input[type=text] {
    width: 115px;
  }
  .header-wrapper .header .navbar a,
  span {
    font-size: 12px;
    padding: 7px;
  }
  .header-wrapper .header .left .input-seach-and-category select {
    font-size: 13px;
    background-size: 13px;
    padding: 0px 18px 0px 8px;
    margin-right: 4px;
  }
  .header-wrapper .header .left .input-seach-and-category button {
    min-width: 40px;
  }
}
@media only screen and (max-width: 1260px) {
 
    .container-product-detail-feature .top-product-details-feature {
        flex-direction: column !important;
    }
    .container-product-detail-feature .top-product-details-feature .left-imageproduct .left-slides {
        display: none !important;
    }
    .product-detail-wrapper .bottom-section {
        margin-top: 36px !important;
    }
    .product-detail-wrapper .top-section {
        grid-template-columns: 35% 65% !important;
    }
    .container-product-detail-feature .top-product-details-feature .left-imageproduct {
        height: 350px !important;
    }

  .top-header-wrapper {
    padding-right: 18px;
    padding-left: 18px;
  }
  .header-wrapper {
    padding-right: 18px;
    padding-left: 18px;
  }
  .hero-container-wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 18px;
  }
  .best-selling-products-wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
  }
  .daily-prize-container {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
  }
  .discount-products-wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
  }
  .company-and-news-wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
  }
  .testimonials-wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-prev {
    left: 450px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-next {
    right: 450px;
  }
  .bottomcard-wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 24px;
  }
  .footer-wrapper {
    margin-top: 28px;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 36px;
    padding-bottom: 18px;
  }
  .hero-container-wrapper .hero-container {
    gap: 6px;
  }
  .hero-container-wrapper .hero-container .left .menu {
    padding: 6px;
  }
  .hero-container-wrapper .hero-container .left .menu .navigation-area .item {
    padding: 3px;
  }
  .hero-container-wrapper .hero-container .left .menu .navigation-area .item span {
    font-size: 13px;
  }
  .hero-container-wrapper .hero-container .left .menu .navigation-area .item img {
    width: 14px;
    height: 14px;
  }
  .hero-container-wrapper .hero-container .right {
    gap: 8px;
  }
  .hero-container-wrapper .hero-container .right .bottom {
    gap: 8px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct {
    gap: 12px;
  }
  .best-selling-products-wrapper .best-selling-products h1 {
    font-size: 21px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct {
    margin-top: 24px;
  }
  .daily-prize-container .daily-prize .pro-img {
    position: absolute;
    left: -1.5rem;
    top: 1.5rem;
    width: 310px;
    height: 331px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text {
    padding-left: 260px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text h1 {
    font-size: 24px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text span {
    font-size: 21px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text p {
    max-width: 400px;
    width: 100%;
    font-size: 14px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text .prices {
    gap: 10px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text .prices span {
    font-size: 24px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .right-times .end-time span {
    font-size: 16px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .right-times .bottom span {
    font-size: 16px;
  }
  .discount-products-wrapper .discount-products h1 {
    font-size: 21px;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct {
    margin-top: 24px;
  }
  .company-and-news-wrapper .company-and-news h1 {
    font-size: 21px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany {
    margin-top: 10px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid {
    margin-top: 16px;
    gap: 12px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 18px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content h1 {
    font-size: 15px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item .news-content p {
    font-size: 13px;
  }
  .testimonials-wrapper .testimonials h1 {
    font-size: 21px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide {
    padding: 16px;
  }
  .testimonials-wrapper .testimonials .carousel-area {
    margin-top: 10px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username span {
    font-size: 17px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article span:nth-child(2) {
    font-size: 14px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article span:nth-child(1) {
    font-size: 14px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article {
    gap: 2px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .text p {
    font-size: 13.5px;
    line-height: 20px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-pagination .swiper-pagination-total {
    font-size: 16px;
  }
  .bottomcard-wrapper .bottomcard {
    gap: 6px;
  }
  .bottomcard-wrapper .bottomcard .card-item {
    padding: 26px 16px;
  }
  .bottomcard-wrapper .bottomcard .card-item span {
    font-size: 16px;
  }
  .bottomcard-wrapper .bottomcard .card-item img {
    width: 40px;
    height: 40px;
  }
  .footer-wrapper .footer .subscription-btn h1 {
    font-size: 15px;
  }
  .footer-wrapper .footer .subscription-btn {
    gap: 8px;
  }
  .footer-wrapper .footer .subscription-btn .input-btn button {
    font-size: 14px;
  }
  .footer-wrapper .footer .head-footer-and-links .navbar {
    gap: 16px;
  }
}
@media only screen and (min-width: 1136px) {
  .toggle-menu {
    display: none !important;
  }
  .header-wrapper .header .navbar .drop-area span {
    padding: 7px;
  }

}
@media only screen and (max-width: 1136px) {
    .left-menu-feat {
        display: none !important;
    }
      .hero-container-wrapper .hero-container .left-feature {
      display: none !important;
  }
  .hero-container-wrapper .hero-container .left {
      display: none !important;
  }
  .hero-container-wrapper .hero-container .left {
    display: none;
  }
  .hero-container-wrapper .hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .hero-container-wrapper .hero-container .right {
    width: 100%;
  }
  .top-header-wrapper {
    display: none;
  }
  .header-wrapper {
    display: none;
  }
  .responsiveheader {
    display: flex !important;
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .responsiveheader .left-logo {
    width: 100px;
    height: 60px;
  }
  .responsiveheader .left-logo img {
    width: 100%;
    height: 100%;
  }
  .responsiveheader .right-input-search-and-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
  }
  .responsiveheader .right-input-search-and-list .search-icon {
    background-color: #c00000;
    width: 55px;
    padding: 10px;
    height: 37px;
    border-radius: 6px;
  }
  .responsiveheader .right-input-search-and-list .search-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .responsiveheader .right-input-search-and-list .search-icon:active {
    transform: scale(0.95);
  }
  .responsiveheader .right-input-search-and-list .list-icon {
    width: 60px;
    height: 60px;
    transition: 100ms ease-in-out;
  }
  .responsiveheader .right-input-search-and-list .list-icon:active {
    transform: scale(0.95);
  }
  .toggle-menu {
    width: 85%;
    height: 100%;
    position: fixed;
    z-index: 1000000000000;
    background-color: rgba(250, 104, 104, 0.7529411765);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: 200ms ease-in-out;
    opacity: 0;
    transform: translateX(-20rem);
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  .toggle-menu .head-logo {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .toggle-menu .head-logo .left-logo {
    width: 100px;
    height: 60px;
  }
  .toggle-menu .head-logo .left-logo img {
    width: 100%;
    height: 100%;
  }
  .toggle-menu .head-logo .title {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    max-height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border-right: 1px solid #c00000;
  }
  .toggle-menu .navbar-for-mobile {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .toggle-menu .navbar-for-mobile 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;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: 150ms ease-in-out;
    line-height: 21px;
    color: #000000;
    text-align: left;
  }
  .toggle-menu .navbar-for-mobile a img {
    width: 14px;
    height: 14px;
  }
  .toggle-menu .navbar-for-mobile a:hover {
    color: #c00000;
  }
  .toggle-menu .navbar-for-mobile .drop-area {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
  }
  .toggle-menu .navbar-for-mobile .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: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 150ms ease-in-out;
    line-height: 21px;
    color: #000000;
    text-align: left;
  }
  .toggle-menu .navbar-for-mobile .drop-area span img {
    width: 14px;
    height: 14px;
  }
  .toggle-menu .navbar-for-mobile .drop-area span:hover {
    color: #c00000;
  }
  .toggle-menu .navbar-for-mobile .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;
    max-height: 250px;
    overflow-y: auto;
    min-width: 251px;
    top: 30px;
    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;
  }
  .toggle-menu .navbar-for-mobile .drop-area .dropdownmenu a {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 10px;
    transition: 150ms ease-in-out;
  }
  .toggle-menu .navbar-for-mobile .drop-area .dropdownmenu a:hover {
    color: #fd6969;
  }
  .toggle-menu .navbar-for-mobile .drop-area .dropdownmenu.activedropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .toggle-menu .bottom {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .toggle-menu .bottom .socials {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
  }
  .toggle-menu .bottom .socials a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .toggle-menu .bottom .socials a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .toggle-menu.active_toggle_menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    -webkit-user-select: auto;
       -moz-user-select: auto;
            user-select: auto;
  }
  .categories-page-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container .item-product {
    height: 300px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media only screen and (max-width: 968px) {
   
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom {
    flex-direction: column;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner {
    width: 100%;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .news-title-and-date h1 {
    font-size: 18px;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .news-title-and-date {
    gap: 1px;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner {
    margin-top: 14px;
  }
  .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 {
    font-size: 14px;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other {
    width: 100%;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other h2 {
    font-size: 18px;
  }
  .companynews-inner-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .companynews-inner-wrapper .companynews-inner .navigators-showers {
    display: none;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news {
    margin-top: 0px;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .news-title-and-date h1 {
    line-height: unset;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct {
    grid-template-columns: repeat(3, 1fr);
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell {
    gap: 0;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell span {
    font-size: 13px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell button {
    font-size: 13px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item {
    height: 350px;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell span {
    font-size: 13px;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell button {
    font-size: 13px;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell {
    gap: 0;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide {
    height: 350px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid .news-item {
    height: 300px;
  }
  .bottomcard-wrapper .bottomcard {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-next {
    display: none;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-button-prev {
    display: none;
  }
  .testimonials-wrapper .testimonials .carousel-area {
    height: 400px;
  }
  .footer-wrapper .footer .head-footer-and-links .navbar {
    flex-direction: column;
    gap: 30px;
  }
  .footer-wrapper .footer {
    gap: 60px;
  }
  .header-wrapper .header .navbar a,
  span {
    padding: 0 !important;
  }
  .footer-wrapper .footer .bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
  .allproduct-page-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product {
    height: 350px;
  }
  .discount-page-wrapper {
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 16px;
  }
  .discount-page-wrapper .discount-page .top-navigators a {
    font-size: 14px;
    padding: 8px 10px;
  }
  .discount-page-wrapper .discount-page .container-with-all-products .products-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .discount-page-wrapper .discount-page .container-with-all-products .products-container .item-product {
    height: 330px;
  }
  .discount-page-wrapper .discount-page .container-with-all-products .products-container {
    row-gap: 20px;
  }
  .discount-page-wrapper .discount-page .container-with-all-products {
    margin-top: 20px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .sort-content,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content {
    padding: 10px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter {
    width: 50%;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .sort-content .navigators a,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators a,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators a,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators a,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content .navigators a {
    font-size: 12px;
    padding: 6px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators .check .name span,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .check .name span,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .check .name span,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content .navigators .check .name span {
    font-size: 12px;
  }
  .categories-page-wrapper .categories-page .navigators-showers {
    flex-direction: column;
    align-items: flex-start;
  }
  .companynews-page-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent {
    flex-direction: column;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left {
    width: 100%;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right {
    width: 100%;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .news {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact-wrapper .contact .contact-and-info {
    flex-direction: column;
  }
  .contact-wrapper .contact .contact-and-info .left-contact {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact-wrapper .contact .contact-and-info .right-information {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
    .discount-products-wrapper .swiper h1 {
        font-size: 24px !important;
        padding: 0px 12px !important;
    }
    .best-selling-products-wrapper .swiper h1 {
        font-size: 24px !important;
        padding: 0px 12px !important;
    }
    .container-product-detail-feature .top-product-details-feature .right-product-details .description .info .free-delivery-msg {
        padding-left: 12px !important;
    }
    .container-product-detail-feature .top-product-details-feature .right-product-details {
        padding: 0 !important;
    }
    .product-detail-wrapper .left {
        display: none !important;
    }
        .product-detail-wrapper .top-section {
        grid-template-columns: repeat(1, 1fr) !important;
    }
  .modal-content {
    width: 85%;
    height: 75vh;
  }
  .discount-page-wrapper .discount-page .container-with-all-products .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text {
    padding-left: 0px;
    gap: 0;
    margin-top: 40px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .right-times {
    align-items: center;
    width: 100%;
    padding-left: 24px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .right-times {
    padding-right: 0px;
  }
  .daily-prize-container .daily-prize .pro-img {
    width: 100px;
    top: -1rem;
    height: 100px;
  }
  .daily-prize-container .daily-prize {
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text h1 {
    line-height: unset;
  }
  .daily-prize-container .daily-prize .container-about-the-prize {
    flex-direction: column;
    gap: 30px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-wrapper .footer .head-footer-and-links {
    flex-direction: column;
    gap: 50px;
  }
  .footer-wrapper .footer .subscription-btn {
    position: relative;
    top: 0;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text a {
    width: 100%;
    font-size: 13px;
    text-align: center;
  }
  .who-we-area-section-wrapper .who-we-are-section .about-content {
    position: relative !important;
    top: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .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 {
    font-size: 14px;
    text-align: justify;
  }
  .who-we-area-section-wrapper .who-we-are-section .about-section {
    min-height: 300px !important;
  }
  .who-we-area-section-wrapper .who-we-are-section .about-section h1 {
    font-size: 21px;
  }
  .who-we-area-section-wrapper .who-we-are-section .about-content h1 {
    font-size: 18px;
  }
  .accordion-section-wrapper .accordion-section .accordion-content {
    position: relative !important;
    top: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .accordion-section-wrapper .accordion-section .about-section {
    min-height: 300px !important;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 568px) {
  .contact-wrapper .contact .contact-and-info .left-contact .title h1 {
    font-size: 18px;
  }
  .contact-wrapper .contact .contact-and-info .left-contact .title p {
    font-size: 14px;
  }
  .contact-wrapper .contact .contact-and-info .left-contact form {
    gap: 8px;
  }
  .contact-wrapper .contact .contact-and-info .left-contact form button[type=submit] {
    font-size: 16px;
    padding: 12px 0px;
  }
  .contact-wrapper .contact .contact-and-info .right-information .top-info h1 {
    font-size: 18px;
  }
  .contact-wrapper .contact .contact-and-info .right-information .top-info {
    padding: 24px 24px;
  }
  .contact-wrapper .contact .contact-and-info .right-information .top-info .info-items {
    margin-top: 24px;
  }
  .contact-wrapper .contact .contact-and-info .right-information .top-info .info-items .item span {
    font-size: 16px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .news {
    grid-template-columns: repeat(1, 1fr);
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image {
    flex-direction: column;
    height: auto;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .leftimg {
    width: 100%;
    min-width: unset;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text h1 {
    font-size: 16px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right .image .right-text {
    gap: 0;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .text-area h1 {
    font-size: 16px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .news .news-item-grid .text-area {
    padding: 16px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .news {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left {
    height: 300px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts h1 {
    font-size: 16px;
    max-width: unset;
    width: 100%;
    line-height: unset;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent {
    gap: 14px;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .pagination-area .pagination {
    flex-direction: column;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .left .content .texts p {
    display: none;
  }
  .companynews-page-wrapper .companynews-page .container-company-and-news .topcontent .right {
    height: auto;
  }
  .categories-page-wrapper .categories-page .navigators-showers {
    gap: 2px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area {
    flex-direction: column;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .right .productsright-container {
    width: 100%;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .right {
    width: 100%;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter {
    width: 100%;
  }
  .footer-wrapper .footer .bottom p {
    font-size: 12px;
  }
  .responsiveheader .right-input-search-and-list {
    gap: 6px;
  }
  .responsiveheader .left-logo {
    width: 80px;
    height: 50px;
  }
  .responsiveheader .right-input-search-and-list .list-icon {
    width: 50px;
    height: 50px;
  }
  .responsiveheader .right-input-search-and-list .search-icon {
    width: 45px;
    height: 33px;
    padding: 7px;
  }
  .footer-wrapper .footer .head-footer-and-links .left-logo {
    width: 100px;
    height: 70px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .right-times {
    padding-left: 0 !important;
  }
  .hero-container-wrapper .hero-container .right .image {
    height: 110px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item {
    height: 150px;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell button {
    padding: 4px !important;
    font-size: 14px !important;
  }
  .best-selling-products-wrapper .best-selling-products .gridbestsellingproduct .grid-item .content-sell button {
    padding: 6px;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide {
    height: 300px;
  }
  .discount-products-wrapper .discount-products .griddiscountproduct .swiper-slide .content-sell button {
    padding: 6px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide {
    padding: 6px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article span:nth-child(2) {
    font-size: 11px;
  }
  .testimonials-wrapper .testimonials .carousel-area .swiper .swiper-slide .top .left .username article span:nth-child(1) {
    font-size: 12px;
  }
  .bottomcard-wrapper .bottomcard {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 468px) {
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .image-wrapper {
    height: 150px;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other {
    flex-direction: column;
    height: auto;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .leftimg {
    width: 100%;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .right-other .grid-other .item-other .right-text {
    width: 100%;
    gap: 4px;
  }
  .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 {
    line-height: 22px;
    text-align: justify;
  }
  .companynews-inner-wrapper .companynews-inner .container-company-and-news .container-bottom .left-inner .description-inner {
    margin-top: 16px;
    gap: 8px;
  }
  .contact-wrapper .contact .contact-and-info .left-contact form .name-and-surname {
    flex-direction: column;
    height: auto;
    gap: 7px;
  }
  .accordion-section-wrapper .accordion-section .about-section h1 {
    font-size: 18px;
  }
  .accordion-section-wrapper .accordion-section .accordion-content .description .accordion-container .head span {
    font-size: 15px;
  }
  .accordion-section-wrapper .accordion-section .accordion-content h1 {
    font-size: 24px;
  }
  .categories-page-wrapper .categories-page .navigators-showers {
    display: none !important;
  }
  .categories-page-wrapper .categories-page select {
    min-width: 270px !important;
    background-position: 230px !important;
    margin-top: 0;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .sort-content h1,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content h1,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content h1,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content h1,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content h1 {
    font-size: 18px;
  }
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .sort-content .navigators .active,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .megapixel-content .navigators .active,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .color-content .navigators .active,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .darklight-content .navigators .active,
  .categories-page-wrapper .categories-page .categories-filtered-area .leftfilter .power-content .navigators .active {
    font-size: 15px;
  }
  .discount-page-wrapper .discount-page .container-with-all-products .products-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .discount-page-wrapper .discount-page .top-navigators {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products select {
    min-width: 190px;
    background-position: 150px;
  }
  .company-and-news-wrapper .company-and-news h1 {
    font-size: 18px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content .title {
    font-size: 13px;
  }
  .company-and-news-wrapper .company-and-news .container-newscompany .main-image .text-content a {
    font-size: 13px;
  }
  .testimonials-wrapper .testimonials h1 {
    font-size: 18px;
  }
  .discount-products-wrapper .discount-products h1 {
    font-size: 18px;
  }
  .daily-prize-container .daily-prize .container-about-the-prize .left-text h1 {
    font-size: 18px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .allproduct-page-wrapper .allproduct-page .top-navigators {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .allproduct-page-wrapper .allproduct-page .top-navigators a {
    font-size: 14px;
    padding: 8px 14px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products {
    margin-top: 20px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container .item-product .content-sell a {
    font-size: 14px;
  }
  .allproduct-page-wrapper .allproduct-page .navigators-showers {
    gap: 4px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container {
    row-gap: 20px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products select {
    min-width: 190px;
    background-position: 150px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .products-container {
    margin-top: 22px;
  }
  .allproduct-page-wrapper .allproduct-page .navigators-showers a,
  .allproduct-page-wrapper .allproduct-page .navigators-showers span {
    font-size: 8px;
  }
  .allproduct-page-wrapper .allproduct-page .container-with-all-products .pagination-area .pagination {
    flex-direction: column;
  }
}/*# sourceMappingURL=responsive.css.map */