* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  height: 100%;
  width: 100%;
  background-color: #dee1e4;
}

/*               <!-------------- ---------NAV BAR ------------------------- --> */
nav {
  height: 85px;
  width: 100%;
  background-color: rgb(72, 175, 255);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* padding: 0 3vw; */
}

.left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* background-color: bisque; */
  height: 60px;
  width: 20%;
}

.left .bar img {
  font-weight: 900;
  /* font-size: 4.2vw; */
  width: 40px;
}

.left .logo img {
  width: 160px;
  text-align: center;
  /* background-color: aquamarine; */
}

.middle {
  width: 40%;
  /* background-color: brown; */
}

.middle input {
  padding: 1.2vw;
  width: 100%;
  border-radius: 5px;
  margin-left: 40px;
  border-radius: none;
  text-decoration: none;
  font-size: 1.2rem;
  border-color: white;
  border: none;
}

.right {
  width: 40%;
  height: 60px;
  /* background-color: blueviolet; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 100px;
}

.right .btn1 {
  font-size: 1.2rem;
  background-color: white;
  color: rgb(72, 175, 255);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  padding: 0.9rem 1.9rem;
  text-decoration: none;
}

.right .btn2 {
  font-size: 1.2rem;
  background-color: rgb(72, 175, 255);
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  padding: 1rem 2rem;
  text-decoration: none;
}

.btn2:hover {
  background-color: white;
  color: rgb(72, 175, 255);
}

@media screen and (max-width: 500px) {
  .left {
    width: 2vw;
    /* gap: 40px; */
  }

  .left .bar img {
    width: 6vw;
    margin-left: 5px;
  }

  .left .logo img {
    width: 25vw;
  }

  .middle {
    width: 45vw;
  }

  .middle input {
    padding: 9px;
  }

  .right {
    display: none;
  }
}

@media screen and (min-width: 501px) and (max-width: 701px) {
  .right {
    display: none;
  }

  /* .middle {
    width: 45vw;
  }

  .middle input {
    padding: 11px;
  } */
}

@media screen and (min-width: 702px) and (max-width: 901px) {
  .right {
    width: 70%;
  }

  .right .btn1 {
    /* width: 200%;
    height: 60px; */
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    padding: 0.6rem 1.3rem;
  }

  .right .btn2 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    padding: 1rem 1.6rem;
  }

  .left {
    width: 31%;
  }

  .left .bar img {
    width: 4vw;
    margin-left: 10px;
  }

  .left .logo img {
    width: 19vw;
  }

  .middle {
    width: 50vw;
    /* margin-left: 20px; */
  }

  .middle input {
    width: 100%;
  }
}

@media screen and (min-width: 902px) {
  .left {
    width: 30%;
    margin-left: 5px;
  }

  .right {
    width: 50%;
  }
}

/* <!-------------- ---------MINI NAVBAR IMAGES------------------------- --> */
.main-container {
  width: 100%;
  height: fit-content;
  background-color: #f1f2f3;
  margin-bottom: 1rem;
  /* padding: 0.2rem;
  padding-bottom: 0.2rem; */
}

.images {
  /* width: 100%; */
  display: flex;
  text-align: center;
  justify-content: space-evenly;
  color: #404040;
  flex-wrap: wrap;
  font-size: 0.7rem;
}

.images div:hover {
  background-color: #e8ebe8;
  cursor: pointer;
  border-bottom: 4px solid #48afff;
}

.images div img {
  width: 4rem;
  padding-top: 1rem;
}

.images .laptops {
  padding-top: 2rem;
}

.images .tablets {
  padding-top: 2rem;
}

.images div {
  width: 7rem;
  height: 6rem;
}

@media screen and (min-width: 535px) and (max-width: 740px) {
  /* .images div img {
    width: 2rem;
 
  } */

  .images div {
    width: 3.7rem;
    height: 7rem;
    font-size: 0.5rem;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 741px) and (max-width: 900px) {
  /* .images div img {
    width: 7.9vw;
  } */

  .images div {
    width: 5rem;
    height: 6rem;
    font-size: 0.5rem;
    padding-bottom: 1.1rem;
    /* background-color: #0bb07e; */
  }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
  /* .images div img {
    width: 5vw;
  } */

  .images div {
    width: 6rem;
    height: 6rem;
    font-size: 0.6rem;
    /* padding-bottom: 1rem;
    background-color: #0bb07e; */
  }
}

/* <!-------------- ------------CARD SECTION---------------------- --> */
.cards {
  width: 100%;
  height: 350px;
  background-color: rgb(250, 11, 143);
  padding-top: 3rem;
  margin-top: 2rem;
}

/* <!-------------- ----------FIRST SECTION---------------------- --> */
.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.heading h1 {
  font-size: 16px;
  color: white;
}

.heading button {
  border-radius: 4px;
  font-size: 1.1rem;
  border: 1px solid white;
  color: #070000;
  background-color: #feffff;
  cursor: pointer;
  /* font-weight: 600; */
  letter-spacing: 0.1rem;
  /* padding: 0.9rem 1.9rem; */
  text-align: center;
  text-decoration: none;

  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.cards-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  height: fit-content;
  /* background-color:#dee1e4; */
}

.card {
  width: 14rem;
  height: 23rem;
  /* height: fit-content; */
  background-color: white;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.card .img {
  width: 9em;
  height: 10em;
  padding-top: 2rem;
  margin-left: 2rem;
  margin-right: 1rem;
}

.btn-1 {
  padding: 5px 8px 5px 8px;
  border-radius: 7px;
  background-color: rgb(252, 242, 230);
  border: none;
  margin-top: none;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.btn-1 i {
  color: rgb(248, 213, 97);
}

.card .p-1 {
  font-size: 14px;
  width: 12rem;
  height: 3rem;
  color: rgb(19, 17, 17);
  margin-left: 1rem;
  /* margin-top: 1rem; */
  margin-bottom: 1rem;
  font-weight: 500;
}

.card h3 {
  margin-left: 1rem;
  margin-right: 1rem;
  /* font-size: 12px; */
  font-size: 1.5rem;
}

.p-2 {
  position: relative;
  /* width: 8rem; */
}

s {
  text-decoration-color: red;
  color: #5c5c5c;
}

.card .p-2 .btn-2 {
  color: #0bb07e;
  background: #f0faf7;
  border-radius: 8px;
  padding: 5px;
  font-size: 1rem;
  font-weight: 600;
  /* margin: 1rem; */
  margin-bottom: 1rem;
  margin-left: 3.2rem;
  position: absolute;
  border: transparent;
}

@media (min-width: 670px) and (max-width: 894px) {
  .lastcard {
    display: none;
  }
}

@media (min-width: 895px) and (max-width: 1119px) {
  .lastcard {
    display: none;
  }

  .secondlastcard {
    display: none;
  }
}

/* <!-------------- ----------SECOND SECTION---------------------- --> */

.heading-2 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.heading-2 h1 {
  font-size: 30px;
  border-color: #070000;
}

.heading-2 h2 {
  font-size: 19px;
  color: rgb(61, 60, 60);
}

.seller-main-div {
  width: 100%;
  display: flex;
  justify-content: center;
  /* background-color: #609bbd; */
}

/* -----left card ------- */
.leftsection {
  width: 24rem;
  background-color: white;
  margin: 1rem;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  padding: 1rem;
}

.leftsection .leftcard p {
  font-size: 1rem;
}

.leftcard img {
  height: 300px;
  width: 80%;
  /* display: flex; */
  margin-left: 1rem;
  margin-top: 1rem;
}

.leftcard h3 {
  margin: 1rem;
}

.rate-btn {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1rem;
}

.rate-btn .btn-2 {
  color: #0bb07e;
  background: #f0faf7;
  border-radius: 8px;
  padding: 5px;
  font-size: 1rem;
  font-weight: 600;
  border: transparent;
  margin-left: 3rem;
}

/* -------right cards----- */

.rightsection {
  width: 60vw;
  /* background-color: palevioletred; */
  margin: 1rem;
}

.parent-1 {
  display: flex;
  justify-content: space-evenly;
  /* gap: 1rem; */
}

.parent-2 {
  justify-content: space-evenly;
  margin-top: 1rem;
  display: flex;
  /* gap: 1rem; */
}

.child-box {
  background-color: white;
  width: 17rem;
  border-radius: 5px;
  padding: 1rem 0rem 0rem 1rem;
  margin: 0.4rem;
}

.para-img {
  display: flex;
  justify-content: space-around;
}

.para-img p {
  width: 3.4rem;
}

.child-box h3 {
  margin-left: 1rem;
}

.child-box img {
  height: 106px;
  width: 164px;
}

@media screen and (max-width: 445px) {
  .seller-main-div {
    /* background-color: #609bbd; */
    width: 100%;
    flex-wrap: wrap;
  }

  .leftsection {
    width: 50rem;
    display: flex;
    justify-content: center;
  }

  .rightsection {
    width: 50rem;
    /* margin-right: 4rem; */
  }

  .rightsection .parent-1 {
    /* background-color: #609bbd; */
    flex-wrap: wrap;
    width: fit-content;
  }

  .rightsection .parent-2 {
    width: fit-content;
    flex-wrap: wrap;
    margin-top: 0.3rem;
  }
}

@media screen and (min-width: 445px) and (max-width: 500px) {
  .seller-main-div {
    width: 100%;
    flex-wrap: wrap;
  }

  .leftsection {
    width: 100%;
    background-color: white;
    margin: 1rem;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    padding: 1rem;
  }

  .rightsection {
    width: 100%;
    /* background-color:rgb(180, 94, 94); */
  }

  .rightsection .parent-1 {
    display: flex;
    justify-content: space-evenly;
    width: 21%;
    margin-left: 0.4rem;
    /* height: 20%; */
    /* flex-wrap: wrap; */
  }

  .rightsection .parent-2 {
    /* flex-wrap: wrap; */
    width: 20%;
    margin-left: 0.4rem;
  }

  .child-box img {
    height: 20vh;
    width: 30vw;
  }

  .rightsection .btn-1 {
    font-size: 3vw;
  }
}

@media screen and (min-width: 501px) and (max-width: 807px) {
  .seller-main-div {
    flex-wrap: wrap;
  }

  .rightsection {
    width: 100%;
  }

  .rightsection .parent-1 {
    width: 100%;
  }

  .rightsection .parent-2 {
    width: 100%;
  }
}

/* --------------------THIRD SECTION------------------ */
.third-section-main-div {
  width: 100%;
  height: 350px;
  background-color: rgb(250, 146, 11);
  padding-top: 3rem;
  margin-top: 2rem;
}

/* <!-- -----------------BANNER----------------------- --> */
.banner {
  margin-top: 1rem;
  width: 100%;
}

/* --------------------FOURTH SECTION------------------ */
.fourth-section-main-div {
  width: 100%;
  height: 350px;
  background-color: rgb(234, 250, 11);
  padding-top: 3rem;
  margin-top: 2rem;
}

/* --------------------FIFTH SECTION------------------ */
.heading h2 {
  font-size: 17px;
  color: black;
  /* margin-right: 2.5rem;
  margin-left: 2.5rem; */
}

.btn-main-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-main-div .btn {
  background-color: #fff348;
  color: #070000;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  border-radius: 7px;
  padding: 12px;
  padding-top: 17px;
  padding-bottom: 17px;
  margin: 1rem;
  width: 15rem;
  height: 4rem;
  border: #f0faf7;
}

.btn:hover {
  background-color: #48afff;
}

/* <!-- ----------------SIXTH BRAND SECTION------------------------ --> */
/* .brand-parent-div{
  display: flex;
 justify-content: center;
 flex-wrap: wrap;
 margin-top: 2rem;
 margin-bottom: 2rem;
 width: 100%;

} */
.brand-main-div {
  display: flex;
  justify-content: center;
  text-align: center;
  /* margin: 2rem; */
  /* background-color: #FFF348; */
  flex-wrap: wrap;
}

.brand {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
  /* gap: 1rem; */
}

.brand img {
  width: 2.9rem;
  transform: scale(1, 1);
  transition: transform 0.5s ease;
}

.brand img:hover {
  transform: scale(1.1, 1.1);
}

@media screen and (min-width: 649px) and (max-width: 800px) {
  .brand-main-div {
    width: 100%;
    /* height: 20vh;
background-color: #0bb07e; */
  }

  .brand {
    font-size: 0.6rem;
  }

  .brand img {
    width: 2rem;
  }
}

/* <!-- --------------------------SEVEN SECTION------------------------------- --> */

.review-img-main-div {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
  /* flex-wrap: wrap; */

  scrollbar-width: 0.1rem;

  overflow-x: scroll;
  scrollbar-color: #dee1e4;
}

.review-img-main-div::-webkit-scrollbar {
  display: none;
}

/* .review-img-main-div div{
    width: 7rem;
    height: 6rem;
  } */

.review-img-main-div img {
  width: 6rem;
  height: 5rem;

  border-radius: 5px;
  transform: scale(1, 1);
  transition: transform 0.5s ease;
}

.review-img-main-div img:hover {
  transform: scale(1.1, 1.1);
}

.review-container {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  text-align: center;
  margin-top: 1rem;
  overflow-x: scroll;
  scrollbar-color: #dee1e4;
}

.review-container::-webkit-scrollbar {
  display: none;
}

.r-boxes {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 1rem;
  gap: 1rem;
  /* flex-wrap: wrap; */
  /* scrollbar-width: 0.1rem; */
}

.r-box {
  width: 19rem;
  height: 11rem;
  background-color: white;
  border-radius: 5px;
  border: #5c5c5c 1px solid;
}

.r1 {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  padding-top: 1rem;
}

.profile img {
  width: 3rem;
  height: 3rem;
}

.star h5 {
  color: rgb(72, 175, 255);
  font-size: 1rem;
}

.star h6 {
  color: #5c5c5c;
  font-size: 0.9rem;
}

.verified img {
  width: 2rem;
  height: 2rem;
}

.verified {
  color: #0bb07e;
  font-size: 1.2rem;
}

.r-box p {
  text-align: left;
  font-size: 0.7rem;
  color: #5c5c5c;
  margin: 0rem 1rem;
}

/* <!-- -----------------------EIGHT SECTION------------------------------- --> */
.R-heading {
  margin: 2rem 2rem 2rem 2.7rem;
  font-size: 1.5rem;
}

.reason-main-div {
  display: flex;
  justify-content: space-evenly;
  margin: 1rem;
  overflow-x: scroll;
  gap: 0.5rem;

  /* width: 80vw;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: auto; */
}

.reason-main-div::-webkit-scrollbar {
  display: none;
}

.box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: radial-gradient(
    25.65% 62.25% at 27.62% 50.2%,
    #48afff 21.57%,
    #0078d5 100%
  );
  width: 510px;
  height: 11rem;
  border-radius: 7px;
  margin-bottom: 1rem;
}

.box img {
  width: 8rem;
  height: 8rem;
}

.box h1 {
  /* width: 40%; */
  color: white;
  text-align: center;
  /* font-size: 2rem; */
  font-size: 15px;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.detail {
  display: block;
  text-align: center;
  width: 140px;
  /* background-color: #0bb07e; */
}

.box button {
  font-size: 0.8rem;
  border-radius: 5px;
  color: white;
  background-color: #fba338;
  border: #e77108;
  width: 6rem;
  height: 2rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  /* padding: .6rem; */
  /* margin-left: 4rem; */
}

.box button:hover {
  background-color: #f47708;
  transition: 2s ease;
}

/* <!-- -----------------------NINE SECTION------------------------------- --> */

.policy {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  background-color: white;
  width: 100%;
  height: fit-content;
  padding: 2rem;
  margin-top: 2.5rem;
}

.policy .p-box img {
  width: 3rem;
  height: 3rem;
}

.p-box h3 {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

.p-box span {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.4rem;
  color: #5c5c5c;
}

@media (max-width: 600px) {
  .p-box h3 {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: normal;
    font-weight: bold;
  }

  .p-box span {
    display: block;
    font-size: 0.5rem;
  }
}

/* <!-- -----------------------LAST SECTION------------------------------- --> */
.footer-main-div {
  width: 100%;
  height: fit-content;
  background-color: #48afff;
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
  /* flex-wrap: wrap; */
}

.contact-service {
  display: flex;
  justify-content: space-evenly;
  width: 600px;
}

.contact {
  /* background-color: #0bb07e; */
  width: 220px;
  height: fit-content;
  margin-top: 1rem;
  font-size: 1rem;
  color: rgb(255, 243, 243);
  padding: 1rem;
}

.contact img {
  width: 9rem;
  height: 4rem;
}

.customer-service {
  width: 260px;
  height: fit-content;
  color: white;
  /* background-color: #e77108; */
  margin-top: 1rem;
}

.customer-service h1 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.customer-service h5 {
  font-size: 1rem;
  margin-top: 1.1rem;
}

.logo {
  width: 450px;
  height: fit-content;
  /* background-color: #5c5c5c; */

  margin-top: 1rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.badge img {
  width: 14rem;
}

@media (max-width: 750px) {
  .contact {
    width: 50%;
    font-size: 0.4rem;
    height: fit-content;
    padding: 1rem;
  }

  .customer-service {
    width: 50%;
    height: fit-content;
    font-size: 0.7rem;
    gap: .5rem;
  }
  .customer-service h1{
    font-size: 1.5rem;
    margin-top: 2rem;
    
  }

  .footer-main-div {
    flex-wrap: wrap;
  }

  .logo {
    flex-wrap: wrap;
    font-size: 1rem;
    padding:0rem 1rem 0rem 1rem;
  }
  .footer-last h6{
    font-size: .7rem;
  }
}

.footer-last {
  width: 100%;
  height: fit-content;
  background-color: #2ea2fc;
  color: #fff;
  /* font-size: .5rem; */
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding-top: 1rem;
}
