.text {
  margin: 6 0;
}

.h {
  margin: 0 0;
}

em {
  margin: 6 0;
}

@keyframes example {
  from {
    width: 0%;
  }

  to {
    width: 36%;
  }
}

#blur {
  opacity: 1;
}

#blur.active {
  opacity: 0.2;
}

/* bestProducts */
.card {
  margin: 0;
  width: 320px;
  height: 360px;
  display: flex;
  row-gap: 2rem;
  align-items: center;
  border-radius: 44px;
  flex-direction: column;
  box-shadow: 0 4px 18px #0006;
}

.card-content {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
}

.img-box {
  width: 100%;
  height: 130px;
  display: flex;
  padding: 2rem 0;
  align-items: center;
  border-radius: 44px;
  justify-content: center;
  box-shadow: 0 10px 7px #bfbfbf;
}

.img-box:hover {
  cursor: pointer;
}

.img-box img {
  width: 70%;
  height: 100%;
}

.card-title {
  font-size: 2rem;
  text-transform: uppercase;
}

.card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-footer .card-price {
  color: #5bdd87;
  font-size: 1.8rem;
}

.card-footer .card-add-button {
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0 0.7rem;
  font-weight: 1000;
  border-radius: 8px;
  background-color: #27f06b;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.card-footer .card-add-button:hover {
  cursor: pointer;
}

.bestProducts {
  display: flex;
  column-gap: 8rem;
  align-items: center;
  padding: 6rem 0 6rem 6rem;
  background-color: #df5778;
}

.bestProductsText {
  color: white;
  display: flex;
  row-gap: 2rem;
  flex-direction: column;
}

.bestProductsText .bestProducts-title {
  font-size: 2rem;
  width: max-content;
  text-transform: uppercase;
}

.bestProductsText .bestProducts-content {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
}

.bestProducts-content .bestProducts-description {
  width: 25ch;
  font-size: 1.5rem;
  text-transform: capitalize;
  font-family: "CustomFont2";
}

.bestProducts-content .bestProducts-button {
  color: white;
  width: max-content;
  border-radius: 12px;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: 2px solid white;
  font-family: "CustomFont2";

  transition: all .2s ease-in-out;
}

.bestProducts-content .bestProducts-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.carouselBox {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.carousel {
  display: flex;
  overflow: hidden;
  column-gap: 2rem;
  width: max-content;
  align-items: center;
  padding: 1rem .32rem;
  transition: transform 1s ease-in-out;
}

.carousel .card {
  width: 350px;
  height: 400px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  flex-direction: column;
  background-color: white;
}

@keyframes ex {
  from {
    left: 0%;
  }

  80% {
    left: 0%;
    opacity: 1;
  }

  to {
    left: -25%;
    opacity: 1;
  }
}

.img-box {
  width: 100%;
  height: 45%;

  display: flex;
}

.img-box:hover {
  cursor: pointer;
  box-shadow: -5px 28px 38px -5px #bfbfbf;
}

.img-box img {
  height: 100%;
  margin: auto;
}

.h {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #a29595;
}

.h:hover {
  color: rgb(55, 55, 238);
  cursor: pointer;
}

.circlesBox {
  /* border: 2px solid black; */
  width: 100px;
  height: 20px;
  position: absolute;
  bottom: 0px;
  margin-left: 40px;
}

.bsp {
  color: white;
  font-size: 3rem;
  margin: 0;
}

.bspt {
  color: white;
  max-width: 30ch;
  font-size: 1.3rem;
  font-family: "CustomFont2";
}

.smb {
  width: 64%;
  height: 17%;
  color: white;
  font-size: 25px;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid white;
  background-color: #df5778;
  font-family: "CustomFont2";
}

/* What people say about us section */
.reviewsbox {
  display: flex;
  row-gap: 6rem;
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  flex-direction: column;

  align-items: center;
  justify-content: center;
}

.reviewsbox::before {
  left: 0;
  z-index: 5;
  content: "";
  width: 12rem;
  height: 90%;
  position: absolute;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.reviewsbox::after {
  right: 0;
  z-index: 5;
  content: "";
  width: 12rem;
  height: 90%;
  position: absolute;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.reviewsContainer {
  display: flex;
  column-gap: 9.2rem;
  justify-content: flex-start;
  transition: transform 1s ease-in-out;
}

.reviewcard.red {
  color: white;
  border: 1px solid #df5778f5;
  background-color: #df5778f5;
}

.reviewcard.red .card-testimonial {
  color: white;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.reviewcard.red .card-name {
  color: #471671;
}

.reviewcard {
  width: 30rem;
  height: 18rem;
  display: flex;
  text-align: center;
  position: relative;
  align-items: center;
  border-radius: 24px;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e0e0e0;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.52);
}

.reviewcard .card-image {
  left: 50%;
  top: -48px;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  border: 4px solid white;
  border: 1px solid #e0e0e0;
  transform: translateX(-50%);
}

.reviewcard .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewcard .card-stars {
  color: #fbbf24;
  font-size: 32px;
  margin-top: 2rem;
}

.reviewcard .card-description {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewcard .card-testimonial {
  width: 70%;
  color: #4b5563;
}

.reviewcard .card-name {
  color: #ec4899;
  margin-top: 2rem;
  font-weight: 600;
}

.Rbox4,
.Rbox,
.Rbox5 {
  opacity: 0.1;
  animation-name: exp;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

.Rbox2,
.Rbox3 {
  opacity: 0.1;
  animation-name: ex3;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

.sr.active {
  animation-name: exr;
  animation-duration: 10s;
  animation-iteration-count: 8;
  animation-fill-mode: forwards;
}

.sl.active {
  animation-name: ex4;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes ex3 {
  from {
    left: 0%;
  }

  80% {
    left: 0%;
  }

  to {
    left: -20%;
  }
}

@keyframes exp {
  from {
    left: 0%;
    opacity: 0.1;
  }

  80% {
    left: 0%;
    opacity: 0.1;
  }

  to {
    left: -20%;
    opacity: 1;
  }
}

@keyframes ex4 {
  from {
    left: 0%;
    opacity: 1;
  }

  to {
    left: -20%;
    opacity: 1;
  }
}

@keyframes exr {
  from {
    left: 0%;
    opacity: 1;
  }

  to {
    left: 20%;
    opacity: 1;
  }
}

.cardImg {
  border-radius: 95px;
  width: 20%;
  height: 28%;
  position: relative;
  top: 10%;

  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}

.cardImg img {
  width: 100%;
}

.head {
  color: #34251f;
  font-size: larger;
}

.descbox {
  position: relative;
  top: 5%;
  left: 0%;
  width: 100%;
  height: 56%;

  /* border: 2px solid black; */
}

.name,
.Title {
  margin: 0 9px;
}

.name {
  font-size: 18px;
}

.Title {
  color: #34251f;
  font-size: 14px;
  opacity: 0.5;
}

.reviewb {
  color: black;
  font-size: 20px;
  font-family: "CustomFont2";
  margin: 30px 35px;
  margin-bottom: 30px;
  min-height: 50%;
  height: 80%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.desc {
  color: #34251f;
}

.arr {
  top: 58%;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.r {
  right: 2%;
  transform: translateY(0.5px);
}

.l {
  left: 2%;
  transform: scaleX(-1);
}

.arr img {
  width: 100%;
  height: 100%;
}

.arr:hover {
  opacity: 0.7;
  cursor: pointer;
}

.box-arr {
  top: 50%;
  left: 2%;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1) translateY(-50%);
}

.box-arr img {
  width: 100%;
  height: 100%;
}

.box-arr:hover {
  opacity: 0.7;
  cursor: pointer;
}

.circlesbox {
  height: 6px;
  position: absolute;
  width: 91px;
  top: 99%;
  right: 47%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  height: 100%;
  width: 20px;
  border-radius: 90px;
  border: 0.7px solid black;
  margin: 0px 5px;
  background-color: white;
}

.circle.active {
  background-color: black;
}

/* notacableClients section */
.notacableClients {
  display: flex;
  row-gap: 2rem;
  align-items: center;
  margin: 4rem 0 8rem 0;
  flex-direction: column;
  justify-content: center;
}

.notacableClients-title {
  text-transform: uppercase;
}

.headnc {
  font-size: 2.3rem;
}

.clientsSection {
  display: flex;
  column-gap: 4rem;
}

.clientsSection .clientImg img {
  width: 10rem;
  height: 10rem;
}

/* firstSection */
.firstSection {
  width: 100%;
  height: 64vh;
  position: relative;
  top: 1vh;
  left: 0%;
}

.fstxt2 {
  width: 48%;
  height: 50%;
  position: absolute;
  font-weight: bolder;
  top: 24%;
  display: flex;
  right: 10%;
  font-size: 2.5vw;
  color: #34251f;
  align-items: center;
  justify-content: center;
}

.fsimgB {
  background-color: gainsboro;
  width: 40%;
  height: 80%;
  position: absolute;
  font-weight: bolder;
  top: 24%;
  display: flex;
  right: 9%;
  font-size: 60px;
  /* overflow: hidden; */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  max-width: 400px;
  max-height: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 1.2);
}

.fsimgB img {
  height: 130%;
}

.secondSection {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopnowsection {
  row-gap: 2.4rem;
  display: flex;
  text-align: center;
  flex-direction: column;

  align-items: center;
  margin-bottom: 8rem;
  justify-content: center;
}

.shopnowsection .shopnow-text {
  font-size: 1.2rem;
  font-family: "CustomFont2";
}

.shopnowsection .shopnow-button {
  border: none;
  color: white;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 24px;
  font-family: "CustomFont";
  background-color: #df5778;
  transition: all .2s ease-in-out;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.6);
}

.shopnowsection .shopnow-button:hover {
  cursor: pointer;
  transform: scale(1.02);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.7);
}

.sshead {
  font-size: 2rem;
}

.sst {
  font-size: 1.3rem;
  font-family: "CustomFont2";
}

.smb2 {
  width: 32%;
  border: 2px solid white;
  height: 17%;
  background-color: #df5778;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.6);
  /* Very light shadow */
  font-family: "CustomFont";
  color: white;
  font-size: 1.6rem;
  border-radius: 6px;

  border-radius: 2%;
  border: none;
}

.smb2:hover {
  cursor: pointer;
}

/* //third section css */
.thirdSection {
  display: flex;
  margin-top: 4rem;
  padding: 0 12rem;
  font-size: 2.2rem;
  min-height: 32rem;
  align-items: center;
  justify-content: space-between;
}

.thirdSection .main-text {
  width: 50ch;
  display: flex;
  row-gap: 2rem;
  font-size: 1.4rem;
  color: #000000cc;
  margin-bottom: 2rem;
  flex-direction: column;
}

.thirdSection .main-image {
  width: 24rem;
  height: 24rem;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
}

.thirdSection .main-image::before {
  width: 90%;
  height: 90%;
  content: "";
  bottom: -5px;
  position: absolute;
  border-radius: 100%;
  background-color: gainsboro;
}

.thirdSection .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(15px);
}

.main-subtext {
  display: flex;
  row-gap: 0.78rem;
  min-height: 20rem;
  align-items: center;
  font-weight: bolder;
  flex-direction: column;
  justify-content: center;
}

.main-subtext {
  color: #df5778;
}

.main-subtext h1 {
  font-size: 2.5rem;
}

.main-subtext span {
  font-size: 1.8rem;
}

.smb:hover {
  cursor: pointer;
  opacity: 0.6;
}

/* //cart and sumodal css */
.cartm {
  background-color: black;
  width: 22%;
  height: 100%;
  position: absolute;
  top: 0vh;
  color: white;
  right: 0;
  display: none;
  padding: 2px 12px;
  position: fixed;

  border-radius: 9px;
  z-index: 12;
  border-left: 2px solid #c3c3c3;
  opacity: 1;
  animation-name: example3;
  animation-duration: 1s;
}

@keyframes example3 {
  from {
    width: 0%;
  }

  to {
    width: 22%;
  }
}

.items-d h3 {
  margin-bottom: 7px;
  margin-top: 0;
}

.items-list {
  display: flex;
  flex-direction: column;
  height: 80vh;
  overflow: hidden;
  overflow-y: hidden;
  margin-bottom: 20px;
  position: relative;
  top: 7%;
  margin-bottom: 0;
  width: 100%;
}

.items {
  margin: 13px auto;
  width: 85%;
  height: 70px;

  display: flex;
}

.items img {
  width: 17%;
  height: 90%;
  margin: auto 4px;
}

.l input {
  width: 20%;
}

.ip {
  display: flex;
}

.removei {
  background-color: rgb(229, 0, 0);
  width: 100px;
  height: 40px;
  border: none;
  color: white;
  font-size: small;
  border-radius: 4px;
  position: relative;
  top: 5%;
  right: 1%;
}

.items-d {
  width: 80%;
}

.items-d h3 {
  margin-bottom: 7px;
}

.dl {
  width: 50%;
}

.items-d ul {
  list-style: none;
  font-size: larger;
}


.danger {
  color: rgb(127, 87, 87);
}

ul li {
  list-style: none;
}

.danger {
  color: red;
}

.success {
  color: green;
}

.row-1,
.row-2 {
  width: 100%;
  display: flex;
}

.email input,
.password input,
.username input {
  width: 70%;
  border: 2px solid rgb(198, 183, 183);
  padding: 7px;
  margin: 4px 3px;
  border-radius: 6px;
}

.email,
.password,
.username,
.nameOnCard,
.cardNumber,
.CVV,
.ExpM,
.ExpY {
  padding: 4px;
  display: flex;
  flex-direction: column;
}

.nameOnCard,
.cardNumber {
  width: 50%;
}

.CVV,
.ExpM,
.ExpY {
  width: 33%;
}

.nameOnCard input,
.cardNumber input {
  width: 77%;
  border: 2px solid rgb(198, 183, 183);
  padding: 4px;
  margin: 4px 3px;
  border-radius: 6px;
}

.CVV input,
.ExpM input,
.ExpY input {
  width: 77%;
  border: 2px solid rgb(198, 183, 183);
  padding: 7px;
  margin: 4px 3px;
  border-radius: 6px;
}

.lsbtn,
.pp,
.Payment,
.verifyB {
  background-color: black;
  color: white;
  padding: 9px 12px;
  margin: 10px;
  width: 20%;
}

.verifyB {
  background-color: green;
}

.closem,
.closesm,
.closec {
  padding: 8px 12px;
  margin: 10px;
  width: 20%;
  background-color: rgb(125, 122, 122);
  align-self: flex-end;
  border: none;
  border-radius: 3px;
}

.otpForm {
  display: none;
}

.otpForm.active {
  display: block;
}

.detailsForm.active {
  display: none;
}

.Total {
  position: relative;
  top: 1%;
  font-weight: bolder;
  display: flex;
}

.Val {
  position: absolute;
  right: 1%;
  font-weight: bolder;
}

.Rbox3,
.Rbox2 {
  opacity: 1;
}

@media (max-width: 1400px) {
  .thirdSection {
    padding: 0 8rem;
  }

  .thirdSection .main-text {
    font-size: 1rem;
  }
}

@media (max-width: 1000px) {
  .thirdSection {
    padding: 0 4rem;
  }
}

@media (max-width: 800px) {

  .card {
    width: 14rem;
    height: auto;
    padding-bottom: 1rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-footer .card-price {
    font-size: 1.4rem;
  }
  
  .thirdSection {
    row-gap: 2rem;
    min-height: 0;
    margin-top: 4rem;
    padding: 0 0.24rem;
    text-align: center;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .thirdSection .main-text {
    width: 100%;
    font-size: 1rem;
  }

  .main-subtext {
    row-gap: 0;
    min-height: 12rem;
  }

  .main-subtext h1 {
    font-size: 1.2rem;
  }

  .main-subtext span {
    font-size: 1rem;
  }

  .bestProductsText .bestProducts-title {
    font-size: 1.4rem;
  }

  .bestProducts-content .bestProducts-description {
    font-size: 1.2rem;
  }

  .firstSection,
  .ts2 .fstxt {
    width: 90%;
    height: 10%;

    top: 15%;

    left: 5%;
    font-size: 1.3rem;

    text-align: center;
  }

  .fstxt span {
    font-size: 1.3rem;
  }

  .bestProducts {
    row-gap: 4rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0 2rem 1rem;
  }

  .carousel .card {
    width: 250px;
    height: 300px;
  }

  .reviewcard {
    width: 30rem;
  }

  .bsp {
    font-size: 2.5rem;
  }

  .bspt {
    font-size: 1.2rem;
  }

  .smb {
    font-size: 1.2rem;
  }

  .h {
    font-size: 1.5vw;
  }

  .reviewb {
    margin: 30px 0px;
    margin-bottom: 0;
    font-size: 1rem;
    width: 100%;
    padding: 0 5px;
  }

  .headnc {
    font-size: 1.8rem;
  }

  .reviewsbox::before {
    display: none;
  }

  .reviewsbox::after {
    display: none;
  }

  .notacableClients {
    margin: 4rem 0 12rem 0;
  }

  .notacableClients .notacableClients-title {
    font-size: 1.4rem;
    width: max-content;
  }

  .clientsSection {
    display: flex;
    row-gap: 1.4rem;
    flex-direction: column;
  }

  .clientsSection .clientImg img {
    width: 8rem;
    height: 8rem;
  }

  .shopnowsection {
    width: 90%;
    height: 80%;

    left: 5%;
  }

  .sshead {
    font-size: 2.7rem;
  }

  .sst {
    font-size: 1.1rem;
  }

  .smb2 {
    width: 50%;

    height: 17%;

    margin-top: 10px;

    font-size: smaller;
  }

  .SmallLogos {
    width: 74%;

    max-width: 75;
    justify-content: center;
    left: 13%;
  }
}

@media (max-width: 460px) {
  .reviewsbox .arr {
    top: 65%;
    width: 35px;
    height: 35px;
  }

  .reviewsContainer {
    column-gap: 6rem;
  }

  .reviewcard {
    height: 8rem;
    width: 16rem;
    padding: 1.2rem 0 0.64rem 0;
  }

  .reviewcard .card-image {
    width: 64px;
    height: 64px;
  }

  .reviewcard .card-testimonial {
    width: 96%;
    font-size: 8px;
  }

  .reviewcard .card-stars {
    margin-top: 0;
  }

  .thirdSection .main-image {
    width: 15rem;
    height: 15rem;
  }

  .reviewcard .card-name {
    margin-top: 0.24rem;
  }

  .thirdSection .main-text {
    font-size: 0.78rem;
  }

  .reviewcard .card-stars {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .reviewsContainer {
    column-gap: 3.8rem;
  }

  .reviewcard {
    height: auto;
    width: 13rem;
    padding: 1.2rem 0 0.64rem 0;
  }
}

.imgl {
  left: 10%;
}

.cartm {
  background-color: black;
  width: 22%;
  height: 100%;
  position: absolute;
  top: 0vh;
  color: white;
  right: 0;
  display: none;
  padding: 2px 12px;
  position: fixed;

  border-radius: 9px;
  z-index: 12;
  border-left: 2px solid #c3c3c3;
  opacity: 1;
  animation-name: example3;
  animation-duration: 1s;
}

@keyframes example3 {
  from {
    width: 0%;
  }

  to {
    width: 22%;
  }
}

.items {
  border: none;
  font-size: 13px;
  font-family: "customFont2";
}

.main-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
  color: white;
}

/* Style for the image container */
.img-container {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}

.img-container img {
  width: 90%;
}

/* Style for the text container */
.text-container {
  font-size: 18px;
}

.items-list {
  top: 3%;
  height: 65vh;
}

.l {
  font-family: "customFont";
}

.removei {
  background-color: black;
  height: 30px;
  /* border:2px solid white; */
  width: 30px;
  margin-top: 20px;
}

.removei:hover {
  cursor: pointer;
  opacity: 0.7;
}

.removei img {
  width: 100%;
}

.dd2 {
  position: relative;
  left: 9%;
}

.red {
  color: red;
}

.animated-text {
  opacity: 0;
  transform: translateY(-45px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-text.animate {
  opacity: 1;
  transform: translateY(0);
}