@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap");

body {
  background-color: #fbf9f4;
  font-family: "Amatic SC", cursive;
}

.hide {
  display: none;
  /* transform: translateX(640px); */
}
#loader {
  color: #9a3413;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translateZ(0);
}

@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em,
      0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em,
      0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0,
      0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em,
      0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em,
      0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em,
      0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em,
      0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em,
      0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

.header-active::after {
  content: "";
  position: absolute;
  top: 4px;
  /* left: 125px; */
  right: -12px;
  width: 37px;
  height: 27px;
  background-image: url("./image/redHalfSun.svg");
  background-repeat: no-repeat;
  display: inline-block;
}

.about-us-text::after {
  content: "";
}
.color-dodge-blend {
  mix-blend-mode: color-dodge;
  opacity: 0.8;
}
.hidden {
  display: block;
  /* display: none; */
  transform: translateX(650px);
  transition: 0.6s ease;
}
.success-message {
  display: none;
}

.special-font {
  font-family: "PT Sans Narrow", Arial, sans-serif; /* Specific font for the element */
}

.about-page li a {
  transition: 0.2s ease-out;
}

.hide-scrollbar {
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.blur-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  border-radius: 10px;

  backdrop-filter: blur(10px);
  z-index: 1;
}

.blur-effect::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;

  backdrop-filter: blur(10px);
  z-index: 1;
}

.blur-effect::-webkit-scrollbar {
  width: 10px;
}

.blur-effect::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
  width: 5px;
}

.hide-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

.hide-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.product-image {
  position: relative;
  padding-bottom: 60px;
  display: inline-block;
}
.product-image::after {
  content: "";
  border-radius: 10px;
  filter: blur(10px);
  max-width: 398px;
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: 40px;
  left: 50%;
  box-shadow: 0 20px 12px 0 #000;
  transform: translateX(-50%);
}

.moving-cloud2 {
  animation-name: rightToLeft;
  animation-timing-function: linear;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  position: relative;
}
@keyframes rightToLeft {
  0% {
    left: 0%;
  }
  100% {
    left: -80%;
  }
}

.auto-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.auto-scroll {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;
  display: flex;
  flex-direction: row;
}
.carousel-item {
  padding: 0;
  font-size: 60px;
  display: inline-block;
  margin-right: 5rem;
}

.all-products-btn::after {
  content: "";
  position: absolute;
  top: -27px;
  /* left: 125px; */
  right: -12px;
  width: 37px;
  height: 35px;
  background-image: url(./image/greenSunPart.svg);

  background-repeat: no-repeat;
  display: inline-block;
}

.moving-clould {
  animation-name: leftRight;
  animation-timing-function: linear;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  position: relative;
}
@keyframes leftRight {
  0% {
    right: 0%;
  }
  100% {
    right: -80%;
  }
}
#prevLeftArrow {
  /* opacity: 0; */
  transform: translateX(-479px);
  transition: 1s;
}
#nextRightArrow {
  transform: translateX(0px);
  transition: 1s;
}

.slide {
  transition: 1s;
}

.product-hower {
  transform: scale(1);
  transition: all 0.3s ease;
}

.product-hower:hover {
  transform: scale(1.2);
  transition: all 0.3s ease-in;
}
.yello-sun-part {
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: -15px;
  right: -20px;
}
.product-hower:hover .yello-sun-part {
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s ease-in;
}
.about-us-box {
  /* background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border: 1px dashed black; */
  position: relative;
}
.about-us-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0, 0, 0) 50%, transparent 0%) top
      repeat-x,
    linear-gradient(rgb(0, 0, 0) 50%, transparent 0%) right repeat-y,
    linear-gradient(to right, rgb(0, 0, 0) 50%, transparent 0%) bottom repeat-x,
    linear-gradient(rgb(0, 0, 0) 50%, transparent 0%) left repeat-y;
  background-size: 10px 1px, 1px 10px;
  transform: rotate(-1.915deg);
}
#border {
  width: auto;
  height: auto;
  text-align: center;
  line-height: 100px;
}

.float {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 21px;
  background-color: #56ba62;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  /* box-shadow: 2px 2px 3px #999; */
}

.button-value {
  min-width: 196px;
  padding: 16px 32px;
  background-color: #f6e7d1;
  border-radius: 39px;
  cursor: pointer;
  /* font-size: 32px; */
}
.active {
  background-color: #e99823;
  color: white;
  border-bottom: 2px solid #000;
}

.card {
  /* background-color: #fff; */
  /* max-width: 18em; */
  margin-top: 1em;
  padding: 1em;
  padding-top: 80px;
  position: relative;
}

.image-container {
  text-align: center;
}
.product-image1 {
  display: inline-block;
  max-width: 100%;
  object-fit: contain;
  height: 230px;
}

.sun {
  padding-top: 18px;
  padding-left: 18px;
}
.sun::after {
  content: " ";
  width: 20px;
  height: 20px;
  background: url("./image/yellowSunPart.svg") no-repeat;
  position: absolute;
  display: none;
  display: inline-block;
  top: 76px;
  opacity: 0;
}

.card:hover .sun::after {
  opacity: 1; /* Show the pseudo-element on card hover */
}

.sun-image {
  /* width: 100%; */
  height: 30px;
}

.container-card {
  display: flex;
  justify-content: center;
  padding-top: 1em;
  color: #000;
}

.container-card::before {
  content: " ";
  width: 37px;
  height: 27px;
  background: url("./image/blackLeftArrow.svg") no-repeat;

  display: inline-block;
  /* top: 76px; */
}
.container-card::after {
  content: " ";
  width: 37px;
  height: 27px;
  background: url("./image/blackRightArrow.svg") no-repeat;

  display: inline-block;
  /* top: 76px;
  /* opacity: 0; */
}
.container h5 {
  font-weight: 500;
  font-size: 24px;
  color: black;
  font-weight: 700;
}

.amazon-btn ::after {
  content: "";
  position: absolute;
  top: -27px;
  /* left: 125px; */
  right: -12px;
  width: 37px;
  height: 35px;
  background-image: url("./image/white-sun-part.svg");
  background-repeat: no-repeat;
  display: inline-block;
}

.category-name {
  display: block;
}
.category-name::after {
  content: "";
  position: absolute;
  top: 4px;
  /* left: 125px; */
  right: -12px;
  width: 37px;
  height: 27px;
  background-image: url("./image/yellowHalfSun.svg");
  background-repeat: no-repeat;
  display: inline-block;
}

.grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.footerbg {
  background: url("./image/footerImage.png") no-repeat;

  background-position: top center;

  background-size: cover;
  background-repeat: no-repeat;
  min-height: 608px;
  align-items: end;
  position: relative;
}

.footerbg::before {
  content: "";
  background-color: #637d37;
  height: calc(100% - 320px);
  width: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.image-container:hover .grayscale {
  filter: grayscale(0%);
}

@media screen and (max-width: 1536px) {
  .container {
    max-width: 1200px;
  }
}

.slider {
  font-weight: 100;
  max-width: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}

.slider__slide {
  min-height: 100vh;
  height: auto;
  min-width: 100vw;
  width: 100%;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

.slider-dots {
  text-align: center;
  position: absolute;
  display: inline-flex;
  bottom: 50px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  /* background-color: #333; */
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  border: white;
  border: solid;
  border-color: white;
}

.dot.active {
  background-color: white; /* Color for active dot */
}

/* Arrows */
.right-arrow,
.left-arrow {
  position: absolute;

  bottom: 50px;

  width: 64px;
  height: 64px;
  /*   background-color: black; */
  z-index: 2;
  cursor: pointer;
}

.right-arrow {
  right: 1rem;
}
.left-arrow {
  left: 1rem;
}

.left-arrow::after {
  transform: rotate(45deg);
  bottom: 14px;
}

/* Hide the scrollbar */
.slider::-webkit-scrollbar {
  display: none; /* Safari, Google Chrome, Opera,  */
}
.slider {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#resource-slider {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 20em;
  /* margin: auto; */
  border-radius: 3px;
  background: #fbf9f3;
  overflow: hidden;
}

#resource-slider .arrow {
  cursor: pointer;
  position: absolute;
  width: 4em;
  height: 100%;
  padding: 0;
  margin: 0;
  outline: 0;
  background: transparent;
  z-index: 6;
}

#resource-slider .prev {
  left: 0;
  bottom: 0;
}

#resource-slider .prev:before {
  left: 0.25em;
  border-width: 3px 0 0 3px;
  border-color: #333 transparent transparent #333;
  transform: rotate(-45deg);
}

#resource-slider .next {
  right: 0;
  bottom: 0;
}

#resource-slider .next:before {
  right: 0.25em;
  border-width: 3px 3px 0 0;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
}

#resource-slider .resource-slider-frame {
  position: absolute;
  top: 0;
  left: 2em;
  right: 2em;
  bottom: 0;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  overflow: hidden;
  padding-top: 32px;
}

#resource-slider .resource-slider-item {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25%;
  height: 100%;
}

#resource-slider .resource-slider-inset {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* margin: 0.5em 0.25em; */
  overflow: hidden;
}

/* Adaptive */
@media screen and (max-width: 720px) {
  .right-arrow::before,
  .right-arrow::after,
  .left-arrow::before,
  .left-arrow::after {
    width: 32px;
    height: 12px;
  }
  .right-arrow::after,
  .left-arrow::after {
    bottom: 16px;
  }
  .right-arrow::before,
  .left-arrow::before {
    top: 20px;
  }
  .right-arrow::before,
  .right-arrow::after {
    right: 0;
  }
  .button-value {
    padding: 12px 32px;
  }
}

/* ------------------- */
.bg-sun {
  position: absolute;
  height: 100vh;
  width: 50%;
  right: 0;
  top: 0;
}
.bg-sun img {
  max-height: 100%;
  mix-blend-mode: color-dodge;
}

.six {
  display: block;
}

.blur-effct-left {
  position: absolute;
  left: 36px;
  height: 100%;
  width: 20px;
  /* background: cadetblue; */
  backdrop-filter: blur(7px);
  z-index: 5;
  backdrop-filter: blur(7px);
  opacity: 0.7;
}
.blur-effct-right {
  position: absolute;
  right: 36px;
  height: 100%;
  width: 20px;
  /* background: cadetblue; */
  backdrop-filter: blur(7px);
  z-index: 5;
  backdrop-filter: blur(7px);
  opacity: 0.7;
}

/* Media query to display .six on mobile screens */

@media screen and (max-width: 767px) {
  .six {
    display: none;
  }

  .footerbg {
    background-size: contain;
    min-height: 429px;
  }

  .footerbg::before {
    height: calc(100% - 60px);
    opacity: 1;
  }
}

@media (max-width: 60em) {
  #resource-slider .resource-slider-item {
    width: 33.33%;
  }
  #resource-slider {
    height: 16em;
  }
}

@media (max-width: 45em) {
  #resource-slider .resource-slider-item {
    width: 50%;
  }
  /* Hide navigation buttons on mobile screens */
  #resource-slider .arrow {
    display: none;
  }
}

@media (max-width: 30em) {
  #resource-slider .resource-slider-item {
    width: 100%;
  }
  #resource-slider {
    height: 19em;
  }
}
@media only screen and (max-width: 600px) {
  #nextRightArrow {
    transform: translateX(479px);
  }
  .round_arrow {
    display: none;
  }
  .arrow-controller {
    display: none;
  }
  .besst-selling-product {
  }
}
/* Add gradient for scrollability indication */
