@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #87394b #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #87394b;
  border-radius: 10px;
  border: 5px solid #ffffff;
}

html,
body {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background: #fbfbfb;
}

.header-brands {
  width: 100%;
  height: auto;
  display: flex;
}
.header-brands .header {
  position: relative;
  top: 0;
  padding: 10px 40px;
  background: #fbfbfb;
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.header-brands .header .logo {
  cursor: pointer;
  transition: 0.1s ease-out;
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header-brands .header .logo img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-brands .header .logo:hover {
  transform: translateX(-5px);
}
.header-brands .header .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-brands .header .navbar a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.1s ease-out;
}
.header-brands .header .navbar a:hover {
  color: rgb(255, 0, 170);
}
.header-brands .header .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header-brands .header .right #search_icon {
  cursor: pointer;
  transition: 0.1s ease-out;
  color: #000000;
}
.header-brands .header .right #search_icon:hover {
  transform: scale(1.1);
}
.header-brands .header .right #search_icon:active {
  transform: translateY(1px);
}
.header-brands .header .right #search_input {
  border: none;
  outline: none;
  padding: 5px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #000000;
  color: black;
  transition: 0.2s ease-out;
  animation: inputanim 0.3s ease-out forwards normal;
}
@keyframes inputanim {
  from {
    transform: translateY(-5rem);
  }
  to {
    transform: translateY(0);
  }
}
.header-brands .header .right #search {
  padding: 3px 10px;
  border: 1px solid rgba(97, 96, 96, 0.662745098);
  color: rgb(31, 31, 31);
  font-weight: 500;
  outline: none;
  border-radius: 3px;
  transition: 0.1s ease-out;
  cursor: pointer;
  background-color: transparent;
}
.header-brands .header .right #search:hover {
  color: #494343;
}
.header-brands .header .right #search:active {
  transform: translateY(2px);
}
.header-brands .header .right .dropdown-language {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
}
.header-brands .header .right .dropdown-language .dropbtn {
  cursor: pointer;
  transition: 0.1s ease-out;
  background: #000000;
  color: #fff;
  padding: 7px 15px;
  border-radius: 2px;
  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-brands .header .right .dropdown-language .dropbtn img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  left: 5px;
  transition: 0.1s ease-out;
}
.header-brands .header .right .dropdown-language .dropdown-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 67px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.header-brands .header .right .dropdown-language .dropdown-content a {
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}
.header-brands .header .right .dropdown-language .dropdown-content a:hover {
  background-color: #ddd;
}
.header-brands .header .right .dropdown-language:hover .dropdown-content {
  display: block;
}
.header-brands .header .right .dropdown-language:hover .dropbtn img {
  transform: rotate(90deg);
}
.header-brands .header .right .dropdown-language:hover .dropbtn {
  background-color: rgb(134, 134, 134);
  color: #fff;
}

.top-container-and-header {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-and-header .swiper {
  width: 100%;
  height: 100%;
}
.top-container-and-header .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.top-container-and-header .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-container-and-header .swiper .swiper-slide .swiper-content {
  width: auto;
  position: absolute;
  height: auto;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.top-container-and-header .swiper .swiper-slide .swiper-content h1 {
  padding: 10px 175px;
  font-size: 35px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
}
.top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container {
  padding: 10px 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container a {
  padding: 12px 20px;
  border-radius: 2px;
  background-color: #fff;
  color: black;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container a:hover {
  background-color: transparent;
  border: 1px solid #fff;
  transform: scale(0.95);
  color: #fff;
}
.top-container-and-header .swiper .swiper-pagination-bullet {
  opacity: 1;
}
.top-container-and-header .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3215686275);
}
.top-container-and-header .swiper-pagination-bullet-active {
  background-color: #fff;
}
.top-container-and-header .header {
  position: absolute;
  top: 0;
  padding: 10px 40px;
  background-color: rgba(0, 0, 0, 0.089);
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.top-container-and-header .header .logo {
  cursor: pointer;
  transition: 0.1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-container-and-header .header .logo img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-container-and-header .header .logo:hover {
  transform: translateX(-5px);
}
.top-container-and-header .header .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-and-header .header .navbar a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.1s ease-out;
}
.top-container-and-header .header .navbar a:hover {
  color: rgb(255, 0, 170);
}
.top-container-and-header .header .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.top-container-and-header .header .right #search_icon {
  cursor: pointer;
  transition: 0.1s ease-out;
}
.top-container-and-header .header .right #search_icon:hover {
  transform: scale(1.1);
}
.top-container-and-header .header .right #search_icon:active {
  transform: translateY(1px);
}
.top-container-and-header .header .right #search_input {
  border: none;
  outline: none;
  padding: 5px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #ddd;
  color: #fff;
  transition: 0.2s ease-out;
  animation: inputanim 0.3s ease-out forwards normal;
}
@keyframes inputanim {
  from {
    transform: translateY(-5rem);
  }
  to {
    transform: translateY(0);
  }
}
.top-container-and-header .header .right #search {
  padding: 3px 10px;
  border: 1px solid rgba(221, 221, 221, 0.662745098);
  color: rgb(206, 198, 255);
  font-weight: 500;
  outline: none;
  border-radius: 3px;
  transition: 0.1s ease-out;
  cursor: pointer;
  background-color: transparent;
}
.top-container-and-header .header .right #search:hover {
  color: #fff;
}
.top-container-and-header .header .right #search:active {
  transform: translateY(2px);
}
.top-container-and-header .header .right .dropdown-language {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
}
.top-container-and-header .header .right .dropdown-language .dropbtn {
  cursor: pointer;
  transition: 0.1s ease-out;
  background: rgba(255, 255, 255, 0.2392156863);
  color: white;
  padding: 7px 15px;
  border-radius: 2px;
  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-and-header .header .right .dropdown-language .dropbtn img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  left: 5px;
  transition: 0.1s ease-out;
}
.top-container-and-header .header .right .dropdown-language .dropdown-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 67px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.top-container-and-header .header .right .dropdown-language .dropdown-content a {
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}
.top-container-and-header .header .right .dropdown-language .dropdown-content a:hover {
  background-color: #ddd;
}
.top-container-and-header .header .right .dropdown-language:hover .dropdown-content {
  display: block;
}
.top-container-and-header .header .right .dropdown-language:hover .dropbtn img {
  transform: rotate(90deg);
}
.top-container-and-header .header .right .dropdown-language:hover .dropbtn {
  background-color: rgb(134, 134, 134);
  color: #fff;
}

.products {
  width: 75%;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 100px;
}
.products .top-title-products {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.products .top-title-products span {
  font-size: 40px;
  font-weight: 600;
}
.products .top-title-products a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.products .top-title-products a img {
  position: relative;
  left: 5 px;
  transition: 0.1s ease-out;
}
.products .top-title-products a:hover > img {
  transform: translateX(10px);
}
.products .swiper {
  margin-left: auto;
  margin-right: auto;
}
.products .swiper {
  width: 100%;
  height: 100%;
  position: initial;
}
.products .swiper .swiper-slide {
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.2s ease-out;
  overflow: hidden;
}
.products .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .swiper .swiper-slide span {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  padding-left: 12px;
  padding-top: 23px;
  padding-bottom: 18px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.products .swiper .swiper-slide:hover {
  transform: scale(0.95);
  box-shadow: 0px 0px 80px 0px rgba(255, 100, 203, 0.158);
}
.products .swiper .swiper-button-next,
.products .swiper .swiper-rtl .swiper-button-prev::after {
  display: none;
}
.products .swiper .swiper-button-next {
  background: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 55%;
  right: -1.5rem;
  display: flex;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.0509803922);
  align-items: center;
  justify-content: center;
}
.products .swiper .swiper-button-next:after {
  display: none;
}
.products .swiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.0509803922);
  width: 40px;
  height: 40px;
  top: 55%;
  left: -1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .swiper .swiper-button-prev:after {
  display: none;
}

.about-us {
  width: 100%;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  background: #FAF6F5;
}
.about-us .left {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .left .back-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-us .left .back-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-us .right {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 40px;
  padding-top: 40px;
}
.about-us .right span {
  font-size: 25px;
  font-weight: 600;
  line-height: 54px;
  text-align: left;
  padding-left: 40px;
  font-size: 40px;
}
.about-us .right p {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  padding-left: 40px;
  padding-right: 140px;
  padding-bottom: 40px;
  padding-top: 10px;
}
.about-us .right .learnmore-btn {
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .right .learnmore-btn a {
  background: #000000;
  color: #fff;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.about-us .right .learnmore-btn a:hover {
  background-color: transparent;
  border: 1px solid black;
  color: #000000;
}
.about-us .right .learnmore-btn a:active {
  transform: translateY(2px);
}

.our-brands {
  width: 75%;
  position: relative;
  height: auto;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 100px;
}
.our-brands .top-title-our-brands {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.our-brands .top-title-our-brands span {
  font-size: 40px;
  font-weight: 600;
}
.our-brands .top-title-our-brands a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-out;
  cursor: pointer;
}
.our-brands .top-title-our-brands a img {
  position: relative;
  left: 10px;
  transition: 0.1s ease-out;
}
.our-brands .top-title-our-brands a:hover > img {
  transform: translateX(10px);
}
.our-brands .boxes-our-brands {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
}
.our-brands .boxes-our-brands .box {
  transition: 0.1s ease-out;
  background-color: #fff;
  cursor: pointer;
  width: 243px;
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-brands .boxes-our-brands .box .brend-logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.our-brands .boxes-our-brands .box .brend-logo-wrapper img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.our-brands .boxes-our-brands .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 50px 0px rgba(255, 0, 170, 0.096);
}

.footer {
  width: 100%;
  height: auto;
  background: #faf6f5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 35px;
}
.footer .header-footer {
  padding: 10px 140px;
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .header-footer .logo {
  cursor: pointer;
  transition: 0.1s ease-out;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer .header-footer .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .header-footer .logo:hover {
  transform: translateX(-5px);
}
.footer .header-footer .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .header-footer .navbar a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.1s ease-out;
}
.footer .header-footer .navbar a:hover {
  color: rgb(255, 0, 170);
}
.footer .header-footer .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer .header-footer .right .dropdown-language {
  position: relative;
  display: inline-block;
}
.footer .header-footer .right .dropdown-language .dropbtn {
  cursor: pointer;
  transition: 0.1s ease-out;
  background: #000000;
  color: #fff;
  padding: 7px 15px;
  border-radius: 2px;
  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .header-footer .right .dropdown-language .dropbtn img {
  position: relative;
  left: 5px;
  transition: 0.1s ease-out;
}
.footer .header-footer .right .dropdown-language .dropdown-content {
  border-radius: 5px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 70px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.footer .header-footer .right .dropdown-language .dropdown-content a {
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}
.footer .header-footer .right .dropdown-language .dropdown-content a:hover {
  background-color: #ddd;
}
.footer .header-footer .right .dropdown-language:hover .dropdown-content {
  display: block;
}
.footer .header-footer .right .dropdown-language:hover .dropbtn img {
  width: 22px;
  height: 18px;
  transform: rotate(90deg);
  padding: 5px;
}
.footer .header-footer .right .dropdown-language:hover .dropbtn {
  background-color: rgb(31, 31, 31);
  color: #fff;
}
.footer .contact {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 68px;
}
.footer .contact .telephone,
.footer .contact .mail,
.footer .contact .location {
  text-decoration: none;
  transition: 0.1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 160px;
  margin-top: 20px;
}
.footer .contact .telephone .logo-wrap,
.footer .contact .mail .logo-wrap,
.footer .contact .location .logo-wrap {
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: flex;
  border: 1px solid #d3d3d3;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
.footer .contact .telephone .logo-wrap img,
.footer .contact .mail .logo-wrap img,
.footer .contact .location .logo-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .contact .telephone span,
.footer .contact .mail span,
.footer .contact .location span {
  padding-left: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
}
.footer .contact .telephone:hover {
  transform: translateX(10px);
}
.footer .contact .mail:hover {
  transform: translateX(10px);
}
.footer .contact .location:hover {
  transform: translateX(10px);
}
.footer .social {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 90%;
  gap: 10px;
}
.footer .social .instagram,
.footer .social .whatsapp,
.footer .social .telegram,
.footer .social .facebook,
.footer .social .linkedin {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  cursor: pointer;
  transition: 0.1s ease-out;
}
.footer .social .instagram img,
.footer .social .whatsapp img,
.footer .social .telegram img,
.footer .social .facebook img,
.footer .social .linkedin img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .social .instagram:hover {
  transform: scale(1.1);
  border: 1px solid magenta;
}
.footer .social .whatsapp:hover {
  transform: scale(1.1);
  border: 1px solid magenta;
}
.footer .social .telegram:hover {
  transform: scale(1.1);
  border: 1px solid magenta;
}
.footer .social .facebook:hover {
  transform: scale(1.1);
  border: 1px solid magenta;
}
.footer .social .linkedin:hover {
  transform: scale(1.1);
  border: 1px solid magenta;
}
.footer .social::after {
  content: "";
  width: 87%;
  height: 1px;
  background-color: #d3d3d3;
  position: absolute;
  right: 0;
  top: 60px;
}
.footer .bottom {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 160px;
  padding-top: 64px;
}
.footer .bottom span {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 14px;
}
.footer .bottom span a {
  font-size: 16px;
  font-weight: 600;
  padding-right: 6px;
  padding-left: 6px;
  text-decoration: none;
  color: black;
  position: relative;
}
.footer .bottom span a::before {
  content: "";
  width: 5px;
  height: 2px;
  background-color: magenta;
  position: absolute;
  left: 5px;
  bottom: 0;
  display: none;
  animation: left_to_right 0.3s ease-out forwards normal;
}
@keyframes left_to_right {
  from {
    width: 5px;
  }
  to {
    width: 90%;
  }
}
.footer .bottom span a:hover::before {
  display: block;
  width: 100%;
  transition: 0.5s ease-out;
}

.top-container-about-us {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-about-us .header {
  position: absolute;
  top: 0;
  padding: 10px 40px;
  background-color: rgba(0, 0, 0, 0.089);
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.top-container-about-us .header .logo {
  cursor: pointer;
  transition: 0.1s ease-out;
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-container-about-us .header .logo img {
  width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-container-about-us .header .logo:hover {
  transform: translateX(-5px);
}
.top-container-about-us .header .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-about-us .header .navbar a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.1s ease-out;
}
.top-container-about-us .header .navbar a:hover {
  color: rgb(255, 0, 170);
}
.top-container-about-us .header .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.top-container-about-us .header .right #search_icon {
  cursor: pointer;
  transition: 0.1s ease-out;
}
.top-container-about-us .header .right #search_icon:hover {
  transform: scale(1.1);
}
.top-container-about-us .header .right #search_icon:active {
  transform: translateY(1px);
}
.top-container-about-us .header .right #search_input {
  border: none;
  outline: none;
  padding: 5px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #ddd;
  color: #fff;
  transition: 0.2s ease-out;
  animation: inputanim 0.3s ease-out forwards normal;
}
@keyframes inputanim {
  from {
    transform: translateY(-5rem);
  }
  to {
    transform: translateY(0);
  }
}
.top-container-about-us .header .right #search {
  padding: 3px 10px;
  border: 1px solid rgba(221, 221, 221, 0.662745098);
  color: rgb(206, 198, 255);
  font-weight: 500;
  outline: none;
  border-radius: 3px;
  transition: 0.1s ease-out;
  cursor: pointer;
  background-color: transparent;
}
.top-container-about-us .header .right #search:hover {
  color: #fff;
}
.top-container-about-us .header .right #search:active {
  transform: translateY(2px);
}
.top-container-about-us .header .right .dropdown-language {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
}
.top-container-about-us .header .right .dropdown-language .dropbtn {
  cursor: pointer;
  transition: 0.1s ease-out;
  background: rgba(255, 255, 255, 0.2392156863);
  color: white;
  padding: 7px 15px;
  border-radius: 2px;
  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-container-about-us .header .right .dropdown-language .dropbtn img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  left: 5px;
  transition: 0.1s ease-out;
}
.top-container-about-us .header .right .dropdown-language .dropdown-content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 67px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.top-container-about-us .header .right .dropdown-language .dropdown-content a {
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}
.top-container-about-us .header .right .dropdown-language .dropdown-content a:hover {
  background-color: #ddd;
}
.top-container-about-us .header .right .dropdown-language:hover .dropdown-content {
  display: block;
}
.top-container-about-us .header .right .dropdown-language:hover .dropbtn img {
  transform: rotate(90deg);
}
.top-container-about-us .header .right .dropdown-language:hover .dropbtn {
  background-color: rgb(134, 134, 134);
  color: #fff;
}
.top-container-about-us .background-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.top-container-about-us .background-image-container .text-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  flex-direction: column;
}
.top-container-about-us .background-image-container .text-content h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  width: 40%;
  color: #ffffff;
}
.top-container-about-us .background-image-container .text-content p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  width: 50%;
  color: #ffffff;
  padding-top: 20px;
  line-height: 27px;
}
.top-container-about-us .background-image-container img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(85%);
}

.text-container {
  width: 100%;
  height: auto;
  background: #faf6f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-container .texts {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: auto;
  height: auto;
  padding-left: 170px;
  padding-top: 120px;
  padding-right: 140px;
  font-size:17px;
  line-height:30px;
  padding-bottom: 120px;
}
.text-container .texts h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 54px;
  text-align: left;
  color: #000000;
}
.text-container .texts p {
  padding-top: 28px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}

.why-choose-us-container {
  width: 100%;
  height: auto;
  padding-top: 100px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-us-container .why-choose-us {
  width: 100%;
  padding-left: 170px;
  padding-bottom: 120px;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: center;
}
.why-choose-us-container .why-choose-us .left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: auto;
}
.why-choose-us-container .why-choose-us .left .left-l-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}
.why-choose-us-container .why-choose-us .left .left-l-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.why-choose-us-container .why-choose-us .right {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.why-choose-us-container .why-choose-us .right h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: left;
}
.why-choose-us-container .why-choose-us .right .choose-variant {
  transition: 0.2s ease-out;
  padding-top: 35px;
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.why-choose-us-container .why-choose-us .right .choose-variant .count {
  width: 40px;
  height: 40px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50px;
}
.why-choose-us-container .why-choose-us .right .choose-variant .count span {
  color: #fff;
  font-size: 17px;
}
.why-choose-us-container .why-choose-us .right .choose-variant .content {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 65%;
}
.why-choose-us-container .why-choose-us .right .choose-variant .content .title {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.why-choose-us-container .why-choose-us .right .choose-variant .content p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
  padding-top: 12px;
}
.why-choose-us-container .why-choose-us .right .choose-variant:hover {
  transform: translateX(-10px);
}

.brands-container {
  animation: opened_page 0.4s ease-out forwards normal;
  margin-top: 48px;
  width: 73.5%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
@keyframes opened_page {
  from {
    transform: translateX(-10rem);
  }
  to {
    transform: translateX(0);
  }
}
.brands-container h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: left;
  color: #000000;
}
.brands-container .boxes {
  width: 100%;
  height: auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 24%);
}
.brands-container .boxes .brand-box {
  position: relative;
  top: 48px;
  display: grid;
  height: 170px;
  transition: 0.2s ease-out;
  background-color: #fff;
  align-items: center;
  justify-items: center;
}
.brands-container .boxes .brand-box .logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brands-container .boxes .brand-box .logo-wrapper img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.brands-container .boxes .brand-box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 5px 0px rgba(31, 31, 31, 0.116);
}

.contact-us-container {
  animation: opened_page 0.4s ease-out forwards normal;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 176px;
  padding-right: 140px;
  margin-top: 25px;
}
@keyframes opened_page {
  from {
    transform: translateX(-10rem);
  }
  to {
    transform: translateX(0);
  }
}
.contact-us-container h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: left;
  color: #000000;
}
.contact-us-container .form-container {
  width: 100%;
  min-height: 800px;
  background: #faf6f5;
  border-radius: 4px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-us-container .form-container .contact-form-container {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us-container .form-container .contact-form-container .contact-form {
  width: 85%;
  min-height: 200px;
  border-bottom: 1px solid #e0d6d4;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #000000;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location {
  text-decoration: none;
  cursor: pointer;
  padding-top: 20px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.1s ease-out;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel span,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail span,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location span {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding-left: 10px;
  color: #000000;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel .logo-wrap,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail .logo-wrap,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location .logo-wrap {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #e0d6d4;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel .logo-wrap img,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail .logo-wrap img,
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location .logo-wrap img {
  width: 70%;
  height: 70%;
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel:hover {
  transform: scale(1.1);
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail:hover {
  transform: scale(1.1);
}
.contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location:hover {
  transform: scale(1.1);
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #000000;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons {
  width: auto;
  height: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .instagram,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .whatsapp,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .telegram,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .facebook,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .linkedin {
  cursor: pointer;
  transition: 0.2s ease-out;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  border: 1px solid #e0d6d4;
  border-radius: 50%;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .instagram img,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .whatsapp img,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .telegram img,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .facebook img,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .linkedin img {
  width: 70%;
  height: 70%;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .instagram:hover {
  border: 1px solid magenta;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .whatsapp:hover {
  border: 1px solid magenta;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .telegram:hover {
  border: 1px solid magenta;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .facebook:hover {
  border: 1px solid magenta;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .icons .linkedin:hover {
  border: 1px solid magenta;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper {
  display: inline-flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .icon {
  position: relative;
  background: transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  display: flex;
  border: 1px solid #E0D6D4;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .icon img {
  width: 70%;
  height: 70%;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 12px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .icon:hover span,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .facebook:hover,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .facebook:hover .tooltip,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .facebook:hover .tooltip::before {
  background: #0866ff;
  color: #fff;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .twitter:hover,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .twitter:hover .tooltip,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .twitter:hover .tooltip::before {
  background: #1DA1F2;
  color: #fff;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .instagram:hover,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .instagram:hover .tooltip,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .instagram:hover .tooltip::before {
  background: #fc6363;
  color: #fff;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .whatsapp:hover,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .whatsapp:hover .tooltip,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .whatsapp:hover .tooltip::before {
  background: #3ef047;
  color: #000000;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .telegram:hover,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .telegram:hover .tooltip,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .telegram:hover .tooltip::before {
  background: #28a8e9;
  color: #ffffff;
}
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .linkedin:hover,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .linkedin:hover .tooltip,
.contact-us-container .form-container .contact-form-container .contact-form .right-social .wrapper .linkedin:hover .tooltip::before {
  background: #0c64c5;
  color: #000000;
}
.contact-us-container .form-container .form {
  width: 100%;
  min-height: 500px;
  padding-left: 80px;
  padding-bottom: 80px;
  padding-top: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
}
.contact-us-container .form-container .form .left {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-us-container .form-container .form .left h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  color: #000000;
}
.contact-us-container .form-container .form .left p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  font-weight: 400;
  padding-top: 28px;
  line-height: 24px;
  padding-right: 60px;
}
.contact-us-container .form-container .form .right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.contact-us-container .form-container .form .right .input-area {
  padding: 7px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.contact-us-container .form-container .form .right .input-area input {
  border: 1px solid rgba(0, 0, 0, 0.0509803922);
  background-color: #fff;
  color: #000000;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  width: 330px;
  height: 40px;
  outline: none;
  transition: 0.2s ease-out;
}
.contact-us-container .form-container .form .right .input-area input:focus {
  border: 1px solid rgba(80, 80, 80, 0.4235294118);
  transform: scale(1.07);
}
.contact-us-container .form-container .form .right .input-area textarea {
  border: 1px solid rgba(0, 0, 0, 0.0509803922);
  background-color: #fff;
  color: #000000;
  padding: 10px;
  border-radius: 4px;
  width: 330px;
  height: 120px;
  outline: none;
  transition: 0.2s ease-out;
  resize: none !important;
}
.contact-us-container .form-container .form .right .input-area textarea:focus {
  transform: scale(1.07);
  border: 1px solid rgba(80, 80, 80, 0.4235294118);
}
.contact-us-container .form-container .form .right .input-area label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  padding-bottom: 10px;
}
.contact-us-container .form-container .form .right .submitting-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 40px;
  padding-left: 10px;
}
.contact-us-container .form-container .form .right .submitting-btn button[type=submit] {
  margin-top: 32px;
  width: 330px;
  height: 40px;
  background-color: #000000;
  border-radius: 4px;
  border: none;
  outline: none;
  color: #fff;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.contact-us-container .form-container .form .right .submitting-btn button[type=submit]:hover {
  transform: translateY(2px);
  background-color: #fff;
  border: 1px solid black;
  color: black;
  font-weight: 600;
}

.product-container {
  animation: opened_page 0.4s ease-out forwards normal;
  width: 100%;
  padding-left: 175px;
  padding-right: 158px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 60px;
}
@keyframes opened_page {
  from {
    transform: translateX(-10rem);
  }
  to {
    transform: translateX(0);
  }
}
.product-container .left-filter-sidebar {
  width: 30%;
  height: auto;
  background-color: #fff;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.0509803922);
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-container .left-filter-sidebar .categories {
  width: 100%;
  margin-top: 28px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-container .left-filter-sidebar .categories .title {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-container .left-filter-sidebar .categories .title span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;
  padding-left: 15px;
}
.product-container .left-filter-sidebar .categories .list-items {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.product-container .left-filter-sidebar .categories .list-items li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.1s ease-out;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 15px;
  margin-top: 12px;
  background: #fafafa;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #000000;
}
.product-container .left-filter-sidebar .categories .list-items li svg {
  color: #000000;
  transition: 0.2s ease-out;
}
.product-container .left-filter-sidebar .categories .list-items li:hover {
  background-color: rgba(206, 206, 206, 0.4235294118);
}
.product-container .left-filter-sidebar .categories .list-items li:active {
  transform: scale(0.98);
}
.product-container .left-filter-sidebar .categories .list-items .style_list,
.product-container .left-filter-sidebar .categories .list-items #skincare-div,
.product-container .left-filter-sidebar .categories .list-items #parfume-div,
.product-container .left-filter-sidebar .categories .list-items #body-div,
.product-container .left-filter-sidebar .categories .list-items #sun-div {
  animation: openediv 0.4s ease-out forwards normal;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
@keyframes openediv {
  from {
    transform: translateY(-2rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.product-container .left-filter-sidebar .categories .list-items .style_list #active,
.product-container .left-filter-sidebar .categories .list-items #skincare-div #active,
.product-container .left-filter-sidebar .categories .list-items #parfume-div #active,
.product-container .left-filter-sidebar .categories .list-items #body-div #active,
.product-container .left-filter-sidebar .categories .list-items #sun-div #active {
  background-color: #000000;
  color: #fff;
}
.product-container .left-filter-sidebar .categories .list-items .style_list a,
.product-container .left-filter-sidebar .categories .list-items #skincare-div a,
.product-container .left-filter-sidebar .categories .list-items #parfume-div a,
.product-container .left-filter-sidebar .categories .list-items #body-div a,
.product-container .left-filter-sidebar .categories .list-items #sun-div a {
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.1s ease-out;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 15px;
  margin-top: 12px;
  background: #fafafa;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #000000;
}
.product-container .left-filter-sidebar .categories .list-items .style_list a:hover,
.product-container .left-filter-sidebar .categories .list-items #skincare-div a:hover,
.product-container .left-filter-sidebar .categories .list-items #parfume-div a:hover,
.product-container .left-filter-sidebar .categories .list-items #body-div a:hover,
.product-container .left-filter-sidebar .categories .list-items #sun-div a:hover {
  background-color: rgba(14, 14, 14, 0.862745098);
  color: #fff;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar {
  width: 100%;
  margin-top: 28px;
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .title {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .title span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;
  padding-left: 15px;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .list-items {
  width: 100%;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .list-items a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.1s ease-out;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 15px;
  margin-top: 12px;
  background: #fafafa;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #000000;
  overflow: hidden;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .list-items a svg {
  color: #000000;
  transition: 0.2s ease-out;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .list-items #active {
  background-color: #000000;
  color: #fff;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .list-items a:hover {
  background-color: rgba(0, 0, 0, 0.8784313725);
  color: #fff;
}
.product-container .left-filter-sidebar .brands-on-filter-sidebar .list-items a:active {
  transform: scale(0.98);
}
.product-container .right-content-sidebar {
  width: 70%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.product-container .right-content-sidebar .header-right-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-container .right-content-sidebar .header-right-content span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  padding: 10px;
}
.product-container .right-content-sidebar .header-right-content .paste-button {
  position: relative;
  display: block;
}
.product-container .right-content-sidebar .header-right-content .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfb;
  color: #000000;
  padding: 5px 22px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.4784313725);
  border-radius: 4px;
}
.product-container .right-content-sidebar .header-right-content .button img {
  position: relative;
  left: 15px;
}
.product-container .right-content-sidebar .header-right-content .dropdown-content {
  display: none;
  font-size: 13px;
  position: absolute;
  z-index: 1;
  min-width: 130px;
  background-color: #ffffff;
  border: 2px solid #cbffcd;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  animation: opened 0.1s ease-out forwards normal;
}
@keyframes opened {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
.product-container .right-content-sidebar .header-right-content .dropdown-content a {
  color: #000000;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  transition: 0.1s;
}
.product-container .right-content-sidebar .header-right-content .dropdown-content a:hover {
  background-color: #c8ddc9;
  color: #212121;
}
.product-container .right-content-sidebar .header-right-content .dropdown-content a:focus {
  background-color: #212121;
  color: #4caf50;
}
.product-container .right-content-sidebar .header-right-content .paste-button:hover .dropdown-content {
  display: block;
}
.product-container .right-content-sidebar .list-items-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 48px;
}
.product-container .right-content-sidebar .list-items-container .box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
  overflow: hidden;
}
.product-container .right-content-sidebar .list-items-container .box .box-product {
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  display: flex;
  text-decoration: none;
  flex-direction: column;
  width: auto;
  height: auto;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.product-container .right-content-sidebar .list-items-container .box .box-product .image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px, 4px, 0px, 0px;
}
.product-container .right-content-sidebar .list-items-container .box .box-product .image-wrapper img {
  width: 100%;
  height: 100%;
}
.product-container .right-content-sidebar .list-items-container .box .box-product span {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  padding: 20px;
  padding-left: 12px;
}
.product-container .right-content-sidebar .list-items-container .box .box-product #new-notification {
  position: absolute;
  right: 0;
  background-color: #fff;
  padding: 7px 10px;
  margin-top: 16px;
  margin-right: 16px;
}
.product-container .right-content-sidebar .list-items-container .box .box-product:hover {
  transform: scale(0.95);
}
.product-container .right-content-sidebar .list-items-container .showmore-btn {
  background: #fbfbfb;
  text-decoration: none;
  color: #000000;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.2s ease-out;
  margin-top: 60px;
}
.product-container .right-content-sidebar .list-items-container .showmore-btn:hover {
  background-color: black;
  color: #fff;
  transform: translateY(2px);
}

.inner-product-container {
  width: 100%;
  height: auto;
  padding-left: 175px;
  padding-right: 175px;
  padding-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #fbfbfb;
  gap: 40px;
}
.inner-product-container .left-product {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.inner-product-container .left-product .swiper {
  width: 100%;
  height: 100%;
}
.inner-product-container .left-product .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-product-container .left-product .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-product-container .left-product .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.inner-product-container .left-product .swiper-slide {
  background-size: cover;
  background-position: center;
}
.inner-product-container .left-product .mySwiper2-thumbs {
  height: 80%;
  width: 100%;
}
.inner-product-container .left-product .mySwiper-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.inner-product-container .left-product .mySwiper-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.inner-product-container .left-product .mySwiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.inner-product-container .left-product .swiper-slide img {
  display: block;
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-product-container .left-product .swiper-slide-thumb-active {
  border: 1px solid #000000;
}
.inner-product-container .left-product .mySwiper-thumbs .swiper-slide {
  height: 85px;
}
.inner-product-container .left-product .mySwiper-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-product-container .left-product .swiper-button-next,
.inner-product-container .left-product .swiper-button-prev {
  display: none;
}
.inner-product-container .right-product {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.inner-product-container .right-product h3 {
  font-size: 33px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.inner-product-container .right-product p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  padding: 5px;
}

.other-products {
  width: 100%;
  min-height: 500px;
  background: #faf6f5;
  margin-top: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.other-products .title-other-products {
  width: 100%;
  padding-left: 175px;
  padding-right: 175px;
  padding-top: 60px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.other-products .title-other-products h1 {
  font-size: 37px;
  font-weight: 600;
  text-align: left;
}
.other-products .title-other-products .buttons {
  display: flex;
  min-width: 45px;
  height: auto;
  position: relative;
  justify-content: space-between;
}
.other-products .title-other-products .buttons .swiper-button-next,
.other-products .title-other-products .buttons .swiper-rtl .swiper-button-prev::after {
  display: none;
}
.other-products .title-other-products .buttons .swiper-button-next {
  background: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 55%;
  right: -1.5rem;
  display: flex;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.0509803922);
  align-items: center;
  justify-content: center;
}
.other-products .title-other-products .buttons .swiper-button-next:after {
  display: none;
}
.other-products .title-other-products .buttons .swiper-button-prev {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.0509803922);
  width: 40px;
  height: 40px;
  top: 55%;
  left: -1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-products .title-other-products .buttons .swiper-button-prev:after {
  display: none;
}
.other-products .product-swiper {
  width: 100%;
  height: 100%;
  padding-left: 175px;
  padding-right: 175px;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 175px;
}
.other-products .product-swiper .swiper {
  margin-left: auto;
  margin-right: auto;
}
.other-products .product-swiper .swiper {
  width: 100%;
  height: 100%;
  position: initial;
}
.other-products .product-swiper .swiper .swiper-slide {
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.2s ease-out;
  overflow: hidden;
  border-radius: 4px, 4px, 0px, 0px;
}
.other-products .product-swiper .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-products .product-swiper .swiper .swiper-slide span {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  padding-left: 12px;
  padding-top: 23px;
  padding-bottom: 18px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.other-products .product-swiper .swiper .swiper-slide:hover {
  transform: scale(0.95);
  box-shadow: 0px 0px 80px 0px rgba(255, 100, 203, 0.158);
}/*# sourceMappingURL=style.css.map */
