@charset "UTF-8";
@font-face {
  font-family: "My Main Font";
  src: url("/assets/font/design.graffiti.comicsansms.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  letter-spacing: 0.03rem;
  line-height: 1.5rem;
  scroll-margin-top: 7rem;
}

body {
  font-size: 1rem;
  font-family: "My Main Font";
  color: #000000;
  background-color: #f3f3f3;
}

.loader-paarent {
  position: fixed;
  inset: 0;
  background-color: #00d5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000000000000000 !important;
  gap: 1rem;
}

.loader {
  display: inline-flex;
  gap: 0.5rem;
}

.loader:before,
.loader:after {
  content: "";
  height: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #000 95%, rgba(0, 0, 0, 0)) 35% 35%/0.5rem 0.5rem no-repeat #fff;
  transform: scaleX(var(--s, 1)) rotate(0deg);
  animation: l6 1s infinite linear;
}

.loader:after {
  --s: -1;
  animation-delay: -0.1s;
}

@keyframes l6 {
  100% {
    transform: scaleX(var(--s, 1)) rotate(360deg);
  }
}
::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: #e4e4e4;
}

::-webkit-scrollbar-thumb {
  background: #00eaff;
  border-radius: 0.3rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #00a2ff;
}

a {
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.nav-list-mob {
  display: none;
}

header {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

nav {
  width: 98%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 999;
  height: 3.5rem;
  margin: 0 auto;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 200rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.nav-logo a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, rgb(106, 0, 255), rgb(0, 217, 255));
  -webkit-background-clip: text;
}
.nav-logo a img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.3rem;
}

.nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 25rem;
}
.nav-list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav-list ul li {
  width: auto;
}
.nav-list ul li a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  border-bottom: 0.1rem solid transparent;
  transition: all 0.2s ease-in-out;
}
.nav-list ul li a:hover {
  color: #6a00ff;
  border-bottom: 0.1rem solid #6a00ff;
}

.nav-list-page {
  color: #6a00ff;
  border-bottom: 0.1rem solid #6a00ff !important;
}

.nav-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.nav-contact a {
  padding: 0.5rem 1rem;
  border: 0.01rem solid transparent;
  border-radius: 1rem;
  background-color: #1addff;
  color: #454545;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.nav-contact a:hover {
  background-color: #ffffff;
  color: #6a00ff;
  border: 0.01rem solid #6a00ff;
}

.header-baner {
  width: 98%;
  height: 33vw;
  max-height: 32rem;
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 0.5rem;
}

.baner-left {
  grid-column: span 4/span 4;
  grid-row: span 6/span 6;
}

.baner-middle-1 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 5;
}

.baner-middle-2 {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 5;
  grid-row-start: 4;
}

.baner-right {
  grid-column: span 2/span 2;
  grid-row: span 6/span 6;
  grid-column-start: 7;
  grid-row-start: 1;
}

.baner-left,
.baner-middle-1,
.baner-middle-2,
.baner-right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.baner-item-overlaye {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  border-radius: 0.5rem;
}

.baner-item-info {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  z-index: 2;
  color: rgb(255, 255, 255);
  font-size: 1.3rem;
  font-weight: 550;
}

.baner-item-info-left {
  bottom: 3.5rem;
  left: 2rem;
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-pagination {
  background-color: rgba(255, 255, 255, 0.3) !important;
  width: auto !important;
  bottom: 0.5rem !important;
  left: 50% !important;
  transform: translate(-50%) !important;
  padding: 0 0.6rem !important;
  border-radius: 200rem !important;
  line-height: 1.5rem;
}

.swiper-pagination-bullet {
  margin: 0 0.15rem !important;
}

main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.top-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  height: auto;
  gap: 1rem 0.5rem;
  margin: 2rem auto;
}

.animation-3dprinter,
.animation-quality,
.animation-gift,
.animation-moon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 11vw;
  max-width: 13rem;
  height: 11vw;
  max-height: 8rem;
  background: #ffffff;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  border-radius: 0.5rem;
}

.top-main-first-child {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 11vw;
  max-height: 8rem;
  background: #ffffff;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  border-radius: 0.5rem;
}

.contact-home-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.3rem;
}
.contact-home-info span {
  font-size: clamp(0.5rem, 1.5vw, 1rem);
  font-weight: 500;
  text-align: center;
}
.contact-home-info a {
  font-size: clamp(0.5rem, 1.5vw, 1rem);
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: #1addff;
  margin-top: 0.3rem;
  border-radius: 1rem;
}

.animation-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.animation-contact svg {
  width: 80% !important;
  height: 80% !important;
}

.animation-quality svg {
  width: 80% !important;
  height: 80% !important;
}

.animation-3dprinter svg {
  width: 150% !important;
  height: 150% !important;
}

.animation-gift svg {
  width: 100% !important;
  height: 100% !important;
}

.animation-moon svg {
  width: 150% !important;
  height: 150% !important;
}

.models-parent {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  margin-top: 3rem;
}

.models-name {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 3rem;
  border-radius: 200rem;
}
.models-name a {
  font-size: 1.3rem;
  font-weight: 500;
  margin-left: 1rem;
  transition: all 0.2s ease-in-out;
}
.models-name a:hover {
  color: #6a00ff;
}

.models-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem 0.5rem;
  width: 100%;
  margin-top: 2rem;
}

.model-product {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 24%;
  height: 27vw;
  max-height: 25rem;
  overflow: hidden !important;
  border-radius: 1rem;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
  background: linear-gradient(180deg, hsla(189, 100%, 55%, 0.15) 20%, hsla(209, 100%, 50%, 0.15) 30%, hsla(0, 100%, 28%, 0.15) 45%, hsla(0, 100%, 36%, 0.15) 50%, rgb(255, 255, 255) 90%);
  transition: transform 0.2s ease-in-out, all 0.2s ease-in-out;
}
.model-product:hover {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.126);
  transform: scale(1.01);
}

.model-product-tag {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 9rem;
  rotate: -45deg;
  top: 1.5rem;
  left: -2rem;
  background-color: rgb(91, 244, 255);
}
.model-product-tag span {
  font-size: 0.9rem;
  font-weight: 500;
}

.model-product-img {
  width: 100%;
  height: 80%;
}
.model-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.model-product-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 20%;
}

.model-product-info-txt {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  height: 100%;
}

#product-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#available-status {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
#available-status i {
  margin-right: 0.5rem;
}

.model-product-info-price-status {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  width: 30%;
  height: 100%;
}
.model-product-info-price-status div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

#price-off {
  font-size: 1rem;
  font-weight: 500;
  color: #454545;
  text-decoration: line-through;
}

#price {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ff1d25;
}

.final-product {
  align-items: center;
  justify-content: center;
  border: 0.1rem dashed #4d00b9;
}
.final-product span {
  font-size: 1.5rem;
  font-weight: 550;
}

.animation-products {
  background-color: #09f;
  width: 100%;
  height: 70%;
}
.animation-products svg {
  width: 100% !important;
  height: 100% !important;
}

.review-parent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  max-width: 85rem;
  margin-top: 10rem;
  gap: 0 1rem;
}

.review-box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 50vw;
  max-height: 30rem;
  background: linear-gradient(-45deg, #4d00b9 5%, #6a00ff 10%, #0084ff 15%, #1addff 20%, rgba(239, 239, 239, 0) 25%, rgba(241, 241, 241, 0) 50%, rgba(240, 240, 240, 0) 75%, #1addff 80%, #0084ff 90%, #6a00ff 95%, #4d00b9 100%);
  border-radius: 1rem;
  padding: 0.5rem;
}

.review-satisfaction-number {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: bold;
}

.review-star {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.review-star div {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  width: 10dvw;
  max-width: 3rem;
  height: 10dvw;
  max-height: 3rem;
  background-color: rgb(246, 209, 0);
}

.review-profile-picture {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.review-profile-picture div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 15dvw;
  max-width: 4rem;
  height: 15dvw;
  max-height: 4rem;
  border: 0.05rem solid #454545;
  border-radius: 200rem;
  overflow: hidden;
}
.review-profile-picture div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-profile-picture div:nth-child(2) {
  margin-left: -1.5rem;
}
.review-profile-picture div:nth-child(3) {
  margin-left: -1.5rem;
}
.review-profile-picture div:nth-child(4) {
  margin-left: -1.5rem;
}
.review-profile-picture div:nth-child(5) {
  margin-left: -1.5rem;
}
.review-profile-picture div:nth-child(6) {
  margin-left: -1.5rem;
}

.review-txt {
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  font-weight: bold;
  margin-top: 2rem;
  text-align: center;
  line-height: 1.8rem;
}

.review-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 55%;
  height: 50vw;
  max-height: 33rem;
  overflow: hidden;
}

.nav-contact-review {
  margin-top: 2rem !important;
}

.swiper-review {
  width: 80% !important;
  height: 50vw;
  max-height: 33rem;
}

.swiper-slide-review {
  padding: 1rem 1rem;
  background-color: #ffffff !important;
  border-radius: 1rem;
  height: 100%;
}

.review-slide-img {
  width: 100%;
  height: 20dvw;
  max-height: 15rem;
}
.review-slide-img img {
  border-radius: 0.5rem;
}

.review-slide-coment {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 50%;
}
.review-slide-coment p {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.3rem 0 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: grab;
  line-height: 1.2rem;
}

.review-slide-coment-profile {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.5rem;
}
.review-slide-coment-profile img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border: 0.01rem solid #000000;
  border-radius: 200rem;
  margin-right: 0.5rem;
}
.review-slide-coment-profile span {
  font-size: 0.9rem;
  font-weight: 550;
  cursor: context-menu;
}

.review-star-coment {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0.3rem;
}
.review-star-coment div {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background-color: rgb(255, 217, 0);
}

.media-parent {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  margin-top: 10rem;
}

.media-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.media-title-txt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.media-title-txt span {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.media-title-icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 98%;
  max-width: 25rem;
  margin-top: 3rem;
}
.media-title-icon a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background: #e3edf7;
  padding: 1.4em;
  border-radius: 0.35rem;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: transform 0.5s;
}
.media-title-icon a i {
  font-size: 1.8rem;
  transition: transform 0.5s;
}
.media-title-icon a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2), inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0px rgb(255, 255, 255), 0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(0.5em);
}
.media-title-icon a:hover i {
  transform: scale(0.9) rotate(360deg);
  fill: #333333;
}

.fa-instagram {
  color: rgb(118, 0, 197);
}

.fa-youtube {
  color: #ff1d25;
}

.fa-tiktok {
  color: #000000;
}

.fa-whatsapp {
  color: rgb(23, 169, 0);
}

.media-show {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  width: 100%;
  margin-top: 7rem;
}
.media-show a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 30vw;
  max-width: 25rem;
  height: 40vw;
  max-height: 30rem;
  background: linear-gradient(180deg, hsla(189, 100%, 55%, 0.15) 10%, hsla(209, 100%, 50%, 0.15) 20%, hsla(265, 100%, 28%, 0.15) 25%, hsla(265, 100%, 36%, 0.15) 30%, rgb(255, 255, 255) 90%);
  border-radius: 1rem;
  padding: 0.5rem;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.media-show a:hover {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.126);
  transform: scale(1.01);
}

.media-show-icon {
  margin-top: 0.5rem;
}
.media-show-icon i {
  font-size: 3.5rem;
}

.media-show-video {
  width: 100%;
  height: 90%;
  margin-top: 0.5rem;
  border-radius: 1rem;
}
.media-show-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-parent {
  width: 100%;
}

.faq-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 99%;
  border-radius: 200rem;
}

.faq-title-bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
}

.faq-title-bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.faq-title-bg3 {
  animation-duration: 5s;
}

.faq-title-txt {
  padding: 0.5rem 0;
}
.faq-title-txt span {
  font-size: 1.5rem;
  font-weight: 500;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
.faq-parent {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10rem;
  border-top: 0.05rem solid transparent;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #007600, rgba(0, 0, 0, 0)) 1;
}

.faq-question {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 98%;
  margin-top: 7rem;
  gap: 0 0.5rem;
}

.faq-img {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 33vw;
  max-height: 30rem;
  margin-top: 1rem;
}
.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  width: 55%;
}

.accordion {
  background-color: rgb(255, 255, 255);
  margin-top: 0.3rem;
  color: #2a2a2a;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  text-align: left;
  outline: none;
  font-size: 0.9rem;
  transition: all 0.4s ease-in-out;
}

.accordion.active,
.accordion:hover {
  background-color: #d4d4d4;
}

.accordion.active {
  border-radius: 0.5rem 0.5rem 0 0;
}

.accordion:after {
  content: "+";
  color: rgba(119, 119, 119, 0.5137254902);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "−";
}

.panel {
  padding: 0;
  font-size: 0.8rem;
  background-color: #d4d4d4;
  border-radius: 0 0 0.5rem 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  margin: 0 1.5rem 1rem 1.5rem;
  color: #454545;
}

.contact-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 90vw;
  max-width: 80rem;
  height: 10rem;
  margin-top: 5rem;
  background: linear-gradient(-45deg, #1addff 5%, #0084ff 10%, #6a00ff 15%, #4d00b9 20%, rgb(255, 255, 255) 25%);
  border-radius: 1rem;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.animation-contact-botton {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 25%;
}
.animation-contact-botton svg {
  width: 50% !important;
  height: 50% !important;
}

.contact-bottom-txt p {
  font-size: clamp(0.8rem, 2.3vw, 1.5rem);
  font-weight: 500;
}
.contact-bottom-txt a {
  margin-top: 1rem;
  padding: 0.5rem 5rem;
}

footer {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 1rem 1rem 0 0;
  margin-top: 10rem;
  overflow: hidden;
  padding-bottom: 5rem;
}

.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 2rem 1rem 1rem;
}

.footer-top-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33%;
  height: 100%;
}
.footer-top-content p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.7rem;
}
.footer-top-content .footer-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0084ff;
  margin-bottom: 1rem;
}
.footer-top-content a {
  font-size: 1.3rem;
}
.footer-top-content a img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.3rem;
}
.footer-top-content p,
.footer-top-content li {
  margin-top: 0.3rem;
}
.footer-top-content li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.footer-top-content li span {
  color: #454545;
}
.footer-top-content li a {
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  margin-left: 0.5rem;
}
.footer-top-content li a:hover {
  color: #6a00ff;
}
.footer-top-content li a i {
  font-size: 1.5rem;
}

.logo-footer a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, rgb(106, 0, 255), rgb(0, 217, 255));
  -webkit-background-clip: text;
}

.Quick-links {
  padding-left: 5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: 0.05rem solid #007600;
  padding: 2rem 0;
}
.footer-bottom span {
  font-size: 0.9rem;
  font-weight: 0.8rem;
  margin-top: 1rem;
  text-align: center;
}
.footer-bottom a {
  color: #0084ff;
}

@media (width <= 900px) {
  .footer-top-content .footer-title {
    font-size: 1rem;
  }
  .footer-top-content p {
    font-size: 0.8rem;
  }
  .footer-top-content {
    width: 35%;
  }
  .footer-top-content-left {
    width: 40%;
  }
  .Quick-links {
    padding-left: 2rem;
    width: 25%;
  }
}
@media (width <= 802px) {
  .footer-top {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
  }
  .footer-top-fa {
    align-items: flex-end;
  }
  .footer-top-content-left {
    width: 100% !important;
    order: 1;
  }
  .footer-top-content {
    width: 100%;
  }
  .footer-top-content ul {
    width: 100%;
  }
  .Quick-links,
  .contact-footer {
    width: 100%;
    margin-top: 2rem;
  }
  .Quick-links span,
  .contact-footer span {
    font-size: 0.9rem;
  }
  .Quick-links {
    padding: 0 !important;
    margin-left: 0;
    order: 3;
  }
  .contact-footer {
    order: 2;
  }
  .footer-bottom span {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 910px) {
  .nav-list {
    width: 40%;
  }
  .header-baner {
    margin-top: 5rem;
    height: 110vw;
    max-height: none;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
  .baner-left {
    grid-column: span 5/span 5;
    grid-row: span 4/span 4;
  }
  .baner-middle-1 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-row-start: 5;
  }
  .baner-middle-2 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 7;
  }
  .baner-right {
    grid-column: span 2/span 2;
    grid-row: span 4/span 4;
    grid-column-start: 4;
    grid-row-start: 5;
  }
}
@media screen and (max-width: 650px) {
  .nav-list {
    display: none !important;
  }
  nav {
    border-radius: 1rem;
    padding: 0.5rem;
    margin-top: 0.3rem;
  }
  .nav-logo a {
    font-size: 1.3rem;
  }
  .nav-contact a {
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
    font-size: 0.9rem;
  }
  .nav-list-mob {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 98%;
    height: 3.5rem;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background-color: rgb(255, 255, 255);
    border: 0.1rem solid #8a8a8a;
    border-radius: 1rem;
  }
  .nav-list-mob ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
  }
  .nav-list-mob ul li {
    width: auto;
  }
  .nav-list-mob ul li a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .nav-list-mob ul li a img {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.1rem;
  }
  .nav-list-mob ul li a span {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0 !important;
    line-height: 1rem;
    color: #454545;
  }
  .nav-list-mob .nav-list-page-mob {
    background-color: rgb(255, 255, 255);
    border-radius: 200rem;
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
    margin-top: -1.3rem;
  }
  .nav-list-mob .nav-list-page-mob a img {
    width: 2.3rem;
    height: 2.3rem;
    margin-bottom: 0.2rem;
  }
  .nav-list-mob .nav-list-page-mob a span {
    font-size: 0.9rem;
    color: #6a00ff;
  }
  .header-baner {
    height: 155vw;
    margin-top: 4.5rem;
    gap: 0.1rem;
  }
  .baner-left,
  .baner-middle-1,
  .baner-middle-2,
  .baner-right {
    border-radius: 0.5rem;
  }
  .baner-item-info {
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 1rem;
  }
  .baner-item-info-left {
    bottom: 2rem;
    left: 0.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .model-product {
    width: 32%;
    height: 35vw;
  }
}
@media screen and (max-width: 910px) {
  .top-main {
    flex-wrap: wrap;
  }
  .top-main-first-child {
    width: 100%;
    height: 15vw;
  }
  .contact-home-info span {
    font-size: 1.1rem;
  }
  .animation-3dprinter,
  .animation-quality,
  .animation-gift,
  .animation-moon {
    width: 23%;
    height: 15vw;
  }
  .animation-moon svg {
    width: 100% !important;
    height: 100% !important;
  }
  .model-product {
    width: 49%;
    height: 50vw;
  }
  .review-parent {
    flex-wrap: wrap;
  }
  .review-box {
    width: 90%;
    height: 51dvw;
    max-height: none;
  }
  .review-contact {
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 3rem;
  }
  .review-star {
    margin-top: 2rem;
  }
  .review-slide-img {
    height: 35dvw;
    max-height: none;
  }
  .review-profile-picture {
    margin-top: 1rem;
  }
  .media-show {
    gap: 0 0.3rem;
  }
  .media-show a {
    height: 47vw;
    max-height: none;
    padding: 0.5rem;
  }
  .animation-contact-botton svg {
    width: 70% !important;
    height: 70% !important;
  }
  .media-show-icon {
    margin-top: 0.3rem;
  }
  .media-show-icon i {
    font-size: 3rem;
  }
}
@media screen and (max-width: 707px) {
  .contact-home-info span {
    font-size: 0.9rem;
    font-weight: 500;
  }
  .contact-home-info a {
    font-size: 0.9rem;
    margin: 0.3rem 0 1rem;
  }
  .models-box {
    gap: 0.5rem 0;
  }
  .model-product {
    width: 100%;
    height: 50dvw;
  }
  .model-product {
    flex-direction: row;
    padding: 0.3rem;
    background: rgb(255, 255, 255) !important;
    border: 0.05rem solid #8a8a8a;
  }
  .model-product-img {
    width: 50%;
    height: 100%;
  }
  .model-product-img img {
    border-radius: 1rem;
  }
  .model-product-info {
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    height: 100%;
    padding: 0.3rem;
  }
  .model-product-info-txt {
    justify-content: space-between;
    width: 100%;
    height: 80%;
    align-items: flex-start;
  }
  #product-title {
    margin-top: 0;
    -webkit-line-clamp: 2;
  }
  #available-status {
    font-size: 0.8rem;
    margin-bottom: 1.3rem;
  }
  #available-status i {
    margin-right: 0;
  }
  .model-product-info-price-status {
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height: 20%;
  }
  .model-product-info-price-status div {
    flex-direction: column;
  }
  #price-off {
    font-size: 0.9rem;
  }
  #price {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
  }
  .final-product {
    align-items: center;
    justify-content: center;
    border: 0.2rem dashed #4d00b9;
  }
  .final-product span {
    font-size: 1.1rem;
  }
  .review-box {
    height: auto;
    max-height: none;
  }
  .review-satisfaction-number {
    margin-top: 2rem;
  }
  .review-star {
    margin-top: 1rem;
  }
  .review-profile-picture div:nth-child(2) {
    margin-left: -1rem;
  }
  .review-profile-picture div:nth-child(3) {
    margin-left: -1rem;
  }
  .review-profile-picture div:nth-child(4) {
    margin-left: -1rem;
  }
  .review-profile-picture div:nth-child(5) {
    margin-left: -1rem;
  }
  .review-profile-picture div:nth-child(6) {
    margin-left: -1rem;
  }
  .review-txt {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .nav-contact-review {
    margin: 2rem 0 1rem 0 !important;
  }
  .swiper-review {
    width: 90% !important;
    height: 130vw;
    max-height: 38rem;
  }
  .review-slide-img {
    height: 45dvw;
    max-height: none;
  }
  .swiper-slide-review {
    padding-bottom: 2rem;
  }
  .review-slide-coment p {
    font-size: 0.8rem;
    -webkit-line-clamp: 11;
  }
  .media-parent {
    width: 90%;
  }
  .media-show {
    flex-wrap: wrap;
    gap: 2rem 0;
  }
  .media-show a {
    width: 100dvw;
    height: 120dvw;
  }
  .media-title-txt span {
    font-size: 1.3rem;
  }
  .media-title-icon {
    justify-content: space-around;
  }
  .faq-question {
    flex-direction: column;
    width: 90%;
  }
  .faq-img {
    width: 100%;
    height: 70dvw;
  }
  .faq {
    width: 100%;
  }
  .contact-bottom {
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
    height: auto;
    padding: 0.3rem 0.5rem 1rem 0.5rem;
  }
  .contact-bottom-txt p {
    text-align: center;
  }
  .top-main-first-child {
    flex-direction: column;
    width: 100%;
    height: auto !important;
    max-height: none;
  }
  .animation-contact-botton {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  .animation-contact-botton svg {
    width: 50% !important;
    height: 50% !important;
  }
}
.swiper-slide-products-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.swiper-slide-products-header img,
.swiper-slide-products-header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-products {
  bottom: 0.5rem !important;
}

#products-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 98%;
  scroll-margin-top: 10rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}

.pagination a,
.pagination .dots {
  padding: 6px 10px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.pagination a:hover {
  background: #1addff;
  color: #000;
}

.pagination a.active {
  background: #00ff08;
  color: #000;
  font-weight: bold;
}

.underlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2156862745);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100dvw;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 999999999;
}

#modal-box-stock {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  width: 98dvw;
  max-width: 25rem;
  height: 90dvw;
  max-height: 25rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999999;
  background: #ffffff;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  border-radius: 2rem;
  padding: 2rem 1rem;
}

.close-modal {
  cursor: pointer;
}
.close-modal i {
  color: #000000;
  font-size: 1.5rem !important;
}

.modal-box-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
}
.modal-box-info i {
  color: #0084ff;
  font-size: 8rem;
}
.modal-box-info span {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.product-section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 98vw;
  max-width: 95rem;
  height: auto;
  background-color: #ffffff;
  margin-top: 7rem;
  border-radius: 2rem;
  padding: 1rem 0.5rem;
  overflow: hidden;
}

.product-about {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 43vw;
  max-height: 35rem;
}

.product-about-imgs {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  height: 100%;
}

.swiperSlideBotton2 {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

.swiperSlideBotton2 .swiper-slide {
  border-radius: 2rem;
}

.swiperSlideBotton {
  height: 15%;
  padding: 0.5rem 0;
}

.swiperSlideBotton .swiper-slide {
  width: 10%;
  height: 100%;
  opacity: 0.4;
}

.swiperSlideBotton .swiper-slide-thumb-active {
  opacity: 1;
}

.product-about-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  padding: 0.5rem 1rem;
}

.title-product {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.title-product h1 {
  font-size: 1.3rem;
  font-weight: 550;
  color: #000000;
  margin-top: 1rem;
}
.title-product .animation-quality-product {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 11vw;
  max-height: 3.9rem;
}
.title-product .animation-quality-product svg {
  width: 80% !important;
  height: 80% !important;
}

.note-product {
  font-size: 0.9rem;
  font-weight: 550;
  color: #454545;
  background-color: rgb(186, 233, 255);
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.chose-color-section,
.chose-size-section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 2rem;
}
.chose-color-section span,
.chose-size-section span {
  font-size: calmp(0.5rem, 10vw, 1.1rem);
  font-weight: 500;
}
.chose-color-section strong,
.chose-size-section strong {
  font-size: calmp(0.5rem, 10vw, 1.1rem);
  font-weight: 550;
  margin-left: 0.5rem;
  color: #ff1d25;
}

.chose-color-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1.3rem;
  gap: 0.5rem;
}
.chose-color-options div {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.05rem solid #454545;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.chose-color-options div:hover {
  border: 0.15rem solid #0084ff;
  transform: scale(1.2);
}
.chose-color-options div.active {
  border: 0.15rem solid #0084ff;
  transform: scale(1.2);
}

.chose-size-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1.8rem;
  gap: 0.5rem;
}
.chose-size-options div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  border: 0.1rem solid #454545;
  border-radius: 200rem;
  padding: 0 1rem;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.chose-size-options div:hover {
  border-color: #0084ff;
  transform: scale(1.08);
}
.chose-size-options div.active {
  border-color: blue;
  transform: scale(1.08);
}

.order-promise {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5em;
  background-color: #ffffff;
  margin-top: 2rem;
  box-shadow: 2px 6px 7px 1px rgba(0, 0, 0, 0.22);
  border-radius: 1rem;
  padding: 0.5rem 0.5rem;
}

.stoc-status {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.stoc-status span {
  font-size: 1rem;
  font-weight: 500;
  color: #454545;
  margin-left: 0.5rem;
}

#pricestatus {
  font-weight: 550;
}

.order-promise-order {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.order-promise-order div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}
.order-promise-order div i {
  font-size: 1.3rem;
  color: #6a00ff;
}
.order-promise-order div span {
  font-size: 0.8rem;
  font-weight: 550;
  color: #454545;
  margin-top: 0.3rem;
  margin-left: 0.5rem;
}

.price-order {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: fixed !important;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
  width: 100%;
  max-width: 35rem;
  background-color: rgb(0, 0, 0);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border: 0.05rem solid #000000;
  border-radius: 1rem;
}

.price-product {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.price-product span {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(185, 185, 185);
  text-decoration: line-through;
}
.price-product h2 {
  font-size: 1.5rem;
  font-weight: 550;
  color: #ffffff;
  margin: 0.3rem;
}

.order-product {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.order-product a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 3rem;
  background-color: #6a00ff;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 550;
  padding: 0 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.order-product a:hover {
  background-color: #0084ff;
}

.more-detalis {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 98%;
  max-width: 80rem;
  margin: 5rem 0 3rem;
  text-align: left;
}
.more-detalis span {
  font-size: 1.3rem;
  font-weight: 500;
}
.more-detalis p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #454545;
}

@media screen and (max-width: 1200px) {
  .chose-color-section,
  .chose-size-section {
    margin-top: 2rem;
  }
  .chose-color-options {
    margin-top: 1rem !important;
  }
  .chose-size-options {
    margin-top: 1rem !important;
  }
}
@media screen and (max-width: 910px) {
  .product-section {
    margin-top: 5rem;
  }
  .product-about {
    flex-direction: column !important;
    height: auto;
    max-height: none;
  }
  .product-about-imgs {
    width: 100%;
    height: 80vw;
    max-height: 35rem;
  }
  .swiperSlideBotton2 {
    height: 95%;
    width: 100%;
    border-radius: 2rem 2rem;
  }
  .swiperSlideBotton {
    display: none !important;
  }
  .product-about {
    height: auto;
    max-height: none;
  }
  .product-about-info {
    width: 100%;
    height: auto;
  }
  .chose-color-section,
  .chose-size-section {
    margin-top: 3rem;
  }
  .chose-color-options {
    margin-top: 1rem !important;
  }
  .more-detalis {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 600px) {
  .modal-box-info {
    margin-top: 1rem;
  }
  .swiper-pagination {
    background-color: rgb(255, 255, 255) !important;
    line-height: 0.8rem;
  }
  .product-about-info {
    padding: 0.5rem 0;
    height: auto;
  }
  .stoc-status {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    width: 55%;
  }
  .stoc-status span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #454545;
    margin-left: 0;
  }
  .order-promise-order {
    width: 45%;
  }
  .order-promise-order div {
    margin-left: 0.3rem;
  }
  .order-promise-order div i {
    font-size: 1.3rem;
  }
  .order-promise-order div span {
    display: none;
  }
  .price-order {
    bottom: 0;
    border-radius: 0;
    background: #ffffff;
    border: none;
    border-top: 0.05rem solid #454545;
  }
  .price-product {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .price-product span {
    font-size: 1rem;
    color: rgb(181, 181, 181);
  }
  .price-product h2 {
    font-size: 1.3rem;
    font-weight: 550;
    color: #ff1d25;
    margin: 0 0 0 0.3rem;
  }
  .more-detalis span {
    font-size: 1.1rem;
  }
  .more-detalis p {
    margin-left: 0.3rem;
    font-size: 0.9rem;
  }
}
.baner-header {
  position: relative;
  width: 100%;
  height: 33vw;
  min-height: 11rem;
  max-height: 30rem;
  margin-top: 7rem;
  overflow: hidden;
}
.baner-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-contact-page a {
  background-color: #ffffff;
  color: #6a00ff;
  border: 0.01rem solid #6a00ff;
}

.over-laye-banner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.468);
}
.over-laye-banner h1 {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 550;
  color: #ffffff;
}

.move-gallery {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 1rem;
  overflow-x: hidden;
  white-space: nowrap;
  width: 100%;
}
.move-gallery div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.5rem;
  margin-top: 2rem;
  transition: all 0.4s ease-in-out;
}
.move-gallery div img {
  width: 10rem;
  height: 6rem;
  object-fit: cover;
}
.move-gallery div:first-child {
  right: 0;
  top: 0;
  animation: scroll 50s linear infinite;
}
.move-gallery div:last-child {
  left: 0;
  top: 0;
  animation: scroll2 50s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(-33%);
  }
  to {
    transform: translateX(32%);
  }
}
@keyframes scroll2 {
  from {
    transform: translateX(33%);
  }
  to {
    transform: translateX(-32%);
  }
}
.contact-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 50rem;
  text-align: center;
  margin-top: 7rem;
}
.contact-title span {
  font-size: 1.8rem;
  font-weight: 550;
  color: #4d00b9;
  line-height: 2.5rem;
}
.contact-title p {
  font-size: 0.9rem;
  font-weight: 450;
  color: #0084ff;
  margin-top: 1rem;
}

.contact-info-parent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 3rem;
  padding: 2rem 0.5rem;
  border-radius: 2rem;
  box-shadow: inset 10px 10px 10px rgba(0, 0, 0, 0.2), inset -10px 5px 5px rgba(255, 255, 255, 0.25);
}

.contact-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  border-right: 0.05rem solid black;
}
.contact-info div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}
.contact-info div:first-child {
  border-bottom: 0.05rem solid black;
}
.contact-info div span {
  font-size: 1.3rem;
  font-weight: 550;
}
.contact-info div a {
  font-size: 1.1rem;
  font-weight: 550;
  color: #454545;
  margin-top: 1rem;
  transition: all 0.2s ease-in-out;
}
.contact-info div a:hover {
  color: #6a00ff;
}

.contact-info-media {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.contact-info-media span {
  font-size: 1.3rem;
  font-weight: 550;
  margin: 0 0 2rem 0;
}

.media-title-icon-contact-page {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 15rem;
  margin-top: 0 !important;
}

.media-show-contact-page {
  margin-top: 0;
}

@media screen and (max-width: 600px) {
  .baner-header {
    height: 40dvw;
    max-height: none;
    margin-top: 5rem;
  }
  .contact-info-parent {
    flex-direction: column;
  }
  .contact-info {
    width: 100%;
    border-bottom: 0.1rem solid rgb(0, 0, 0);
    border-right: NONE;
    padding-bottom: 2rem;
  }
  .contact-info div:first-child {
    border-bottom: none;
  }
  .contact-info-media {
    margin-top: 3rem;
    width: 100%;
  }
}
.personalization-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 98%;
  gap: 2rem;
}

.pn-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 3rem 0;
}
.pn-title h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  line-height: normal;
  text-align: center;
}
.pn-title span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #8a8a8a;
  margin-top: 2rem;
  width: 60%;
  text-align: center;
}

.pn-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 28rem;
  height: 55vw;
  max-height: 26rem;
  background-color: rgb(255, 255, 255);
  padding: 0.5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.pn-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.2rem);
  transition: all 0.2s ease-in-out;
}
.pn-item:hover .pn-item-info-content div {
  background-color: rgb(23, 169, 0);
}
.pn-item:hover .pn-item-info-content i {
  transform: rotate(-45deg);
  color: #ffffff;
}

.pn-item-img {
  width: 100%;
  height: 32vw;
  max-height: 18rem;
}
.pn-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}

.pn-item-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 93%;
  margin: 1rem 0 0.5rem 0;
}
.pn-item-info h2 {
  font-size: 1.1rem;
  font-weight: 550;
  margin-bottom: 0.5rem;
}

.pn-item-info-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.pn-item-info-content span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #8a8a8a;
}
.pn-item-info-content div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  border: 0.05rem solid #007600;
  border-radius: 50%;
  line-height: normal;
  transition: all 0.2s ease-in-out;
}
.pn-item-info-content div i {
  font-size: 1.3rem;
  color: #007600;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 950px) {
  .personalization-section {
    gap: 1rem;
  }
  .pn-item {
    width: 48%;
  }
}
@media screen and (max-width: 610px) {
  .pn-item-img {
    width: 100%;
    height: 50vw;
    max-height: none;
  }
  .pn-title span {
    font-size: 1rem;
    margin-top: 1rem;
    width: 98%;
  }
  .pn-item {
    width: 90dvw;
    height: auto;
  }
  .pn-item-info {
    width: 98%;
    margin-top: 1rem;
  }
}
.pn-about {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  margin: 3rem 0;
}

.pn-about-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 0 1rem;
  margin-top: 3rem;
}

.pn-about-content-txt {
  width: 50%;
  top: 15dvh;
  position: sticky;
}
.pn-about-content-txt h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.pn-about-content-txt p {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem;
  line-height: 1.8rem;
}

.pn-abot-contact {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  background: linear-gradient(-45deg, #4d00b9 5%, #6a00ff 10%, #0084ff 15%, #1addff 20%, rgb(255, 255, 255) 25%);
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}
.pn-abot-contact span {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.pn-about-img {
  width: 50%;
}
.pn-about-img img {
  position: sticky;
  top: 18dvh;
  width: 100%;
  height: 40dvw;
  max-height: 35rem;
  margin-top: 20rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}
.pn-about-img img:first-child {
  margin-top: 0;
}

@media screen and (max-width: 992px) {
  .pn-about-content {
    flex-direction: column;
    align-items: center;
  }
  .pn-about-content-txt {
    position: static;
    width: 98%;
    top: 18dvh;
    order: 1;
  }
  .pn-about-img {
    width: 100%;
    position: sticky;
    top: 0;
    margin-top: 2rem;
    background-color: #f1f1f1;
    z-index: 5;
    order: 2;
  }
  .pn-about-img img {
    top: 15dvh;
    height: 75dvw;
    max-height: none;
  }
}
@media screen and (max-width: 600px) {
  .pn-about-content-txt h1 {
    margin-bottom: 1rem;
  }
  .pn-about-content-txt p {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .pn-abot-contact {
    padding: 1rem 0.5rem;
  }
}/*# sourceMappingURL=main.css.map */