* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Jost", sans-serif;
  list-style-type: none;
  text-decoration: none;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
}
.logo img {
  max-width: 120px;
  height: auto;
}
.navmenu {
  display: flex;
}
.navmenu li :hover {
  background: #000;
}
.navmenu a {
  color: #2c2c2c;
  font-size: 16px;
  text-transform: capitalize;
  padding: 10px 20px;
  font-weight: 400;
  transition: all 0.42s ease;
}
.navmenu a:hover {
  color: #ee1c47;
}
.nav-icon {
  display: flex;
  align-items: center;
}
.nav-icon i {
  margin-right: 20px;
  color: #2c2c2c;
  font-size: 25px;
  font-weight: 400;
  transition: all 0.42s ease;
}
.nav-icon i:hover {
  transform: scale(1.05);
  color: #ee1c47;
}
#menu-icon {
  font-size: 35px;
  color: #2c2c2c;
  z-index: 10001;
  cursor: pointer;
}
section {
  padding: 5% 10%;
}
.main-home {
  width: 100%;
  height: 100vh;
  background-image: url(Assets/banner-3.png);
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
.main-text h5 {
  color: #ee1c47;
  font-size: 16px;

  text-transform: capitalize;
  font-weight: 500;
}
.main-text h1 {
  color: #000;
  font-size: 65px;
  text-transform: capitalize;
  line-height: 1.1;
  font-weight: 600;
  margin: 6px 0 10px;
}
.main-text p {
  color: #333c56;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
}
.main-btn {
  display: inline-block;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  border: 2px solid#111;
  padding: 12px 25px;
  transition: all 0.42s ease;
}
.main-btn:hover {
  background: #000;
  color: #fff;
}
.main-btn i {
  vertical-align: middle;
}
.down-arrow {
  position: absolute;
  top: 85%;
  right: 11%;
}
.down i {
  font-size: 30px;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  border-radius: 50px;
  padding: 12px 12px;
}
.down i:hover {
  background: #2c2c2c;
  color: #fff;
  transition: all 0.42s ease;
}
header.sticky {
  background: #fff;
  padding: 20px 10%;
  box-shadow: 0px 0px 10px rgb(0 0 0 /10%);
}
/* trending-section-css */
.center-text h2 {
  color: #111;
  font-size: 28px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 30px;
}
.center-text span {
  color: #ee1c47;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, auto));
  gap: 2rem;
}
.row {
  position: relative;
  transition: all 0.4s;
}
.row img {
  width: 100%;
  height: auto;
  transition: all 0.4s;
}
.row img:hover {
  transform: scale(0.9);
}
.product-text h5 {
  position: absolute;
  top: 13px;
  left: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  background: #27b737;
  padding: 3px 10px;
  border-radius: 2px;
}
.heart-icon {
  position: absolute;
  right: 0;
  font-size: 20px;
}
.heart-icon:hover {
  color: #ee1c47;
}
.ratting {
  color: #ff8c00;
  font-size: 18px;
}

.price h4 {
  color: #111;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}
.price p {
  color: #151515;
  font-size: 14px;
  font-weight: 600;
}
.client-reviews {
  background: #f3f4f6;
}
.reviews {
  text-align: center;
}
.reviews h3 {
  color: #111;
  font-size: 25px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 700;
}
.reviews img {
  width: 100px;
  height: auto;
  border-radius: 80px;
  margin: 10px 0;
}
.reviews p {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}
.reviews h2 {
  font-size: 22px;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 2px;
}
/* update-section-css */
.up-center-text h2 {
  text-align: center;
  color: #111;
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 30px;
}
.cart img {
  width: 350px;
  height: auto;
  border-radius: 5px;
}
.update-cart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, auto));
  gap: 1px;
}
.cart h5 {
  color: #636872;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}
.cart h4 {
  color: #111;
  font-size: 18px;
  font-weight: 600;
}
.cart p {
  color: #707070;
  font-size: 15px;
  max-width: 380px;
  line-height: 25px;
  margin-bottom: 12px;
}
.cart h6 {
  color: #151515;
  font-size: 14px;
  font-weight: 500;
}
/* contact-section */
.contact {
  background: #dbdbdb;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, auto));
  gap: 3rem;
}
.first-info img {
  width: 140px;
  height: auto;
}
.contact-info h4 {
  color: #212529;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-info p {
  color: #565656;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.5;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.42s;
}
.contact-info p:hover {
  color: #ee1c47;
}
.social-icon i {
  color: #565656;
  margin-right: 10px;
  font-size: 20px;
  transition: all 0.42s;
}
.social-icon i:hover {
  transform: scale(1.3);
}
.end-text {
  text-align: center;
  background: #edfff1;
  padding: 20px;
}
.end-text p {
  color: #111;
  text-transform: capitalize;
}

.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}
.center-text1 h2 {
  font-size: 30px;
}
.center-text1 span {
  color: #ee1c47;
}
.button3 {
  padding: 9px;
  border: 1px solid blue;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  background: blue;
  color: #fff;
  transition: all 0.42s ease;
}
.button3:hover {
  color: #000;
  background: #fff;
}
.final {
  margin-left: 67px;
  font-weight: 700;
}
.final span {
  color: #ee1c47;
}
.up-arrow {
  border: 2px solid#000;
  width: 60px;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
}
.up-arrow i {
  color: #000;
}
.up-arrow :hover {
  background: #000;
  color: #fff;
}

.alert {
  background: blue;
  color: #fff;
  margin-top: 200px;
  font-size: 20px;
  margin-bottom: 150px;
}
.first-info a {
  text-decoration: none;
}
.up-center-text span {
  color: #ee1c47;
}
html,
body {
  position: relative;
  height: 100%;
}
body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews {
  font-size: 25px;
  font-weight: 900;
}
.reviews span {
  color: #ee1c47;
}
.accordion {
  margin-top: 40px;
  margin-bottom: 10px;
}
.male {
  padding-top: 200px;
}
.male span {
  color: #ee1c47;
}
.yes {
  margin-right: 10px;
  padding: 10px;
  background: #000;
  color: #fff;
  border: 1px;
  transition: 1s ease-in-out;
  border-radius: 7px;
  text-decoration: none;
}
.yes:hover {
  color: #000;
  background: #dbdbdb;
}
.formContainer {
  display: flex;
  width: 50%;
  border: 0px solid;
  border-radius: 10px;
  background-color: rgba(232, 231, 231, 0.644);
  height: 400px;
  padding-right: 200px;
}
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0.5;
}
.contentText {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 20px;
  background-color: #ee1c47;
  color: #000;
  border-radius: 130px 15px 15px 70px;
  font-family: montserrat;
  padding-left: 80px;
  padding-right: 150px;
  padding-top: 90px;
}
.pro1 {
  margin-right: 32px;
  font-family: montserrat;
}
p {
  font-family: montserrat;
  margin-bottom: 15px;
  margin-left: 30px;

  display: flex;
  flex-direction: column;
}
.proi {
  padding: 5px;
  background-color: #dedede;
  color: black;
  border: 1px;
  font-family: montserrat;
  margin-bottom: 8px;
  width: 290px;
  margin-left: 20px;
  outline: none;
}
.proh {
  padding: 5px;
  background-color: #dedede;
  color: black;
  border: 1px;
  font-family: montserrat;
  width: 290px;
  margin-left: 20px;
  margin-bottom: 10px;
  outline: none;
}
.pro7 {
  font-family: montserrat;
}
.pro2 {
  background: #000;
  border-width: 1.5px;
  border-radius: 8px;
  border-color: #000;
  color: #fff;
  padding: 5px 25px 5px 25px;
  transition: 1s ease-in-out;
  text-decoration: none;
}
.pro2:hover {
  transition: 0.15s;
  background-color: #dbdbdb;
  color: #000;
  cursor: pointer;
}

.pro3 {
  font-family: montserrat;
  padding-top: 35px;
}
.forget {
  text-decoration: none;
  color: black;
  font-family: montserrat;
  margin-bottom: 5px;
}
.sign {
  background-color: #ee1c47;
  border-width: 1px;
  border-radius: 5px;
  border-color: white;
  color: white;
  margin-top: 15px;
  transition: 1s ease-in-out;
  padding: 10px;
  cursor: pointer;
}
.sign:hover {
  color: #fff;
  background-color: #000;
}
.contentText .hello {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contentText p {
  text-align: center;
}
.wrapper {
  width: 350px;
  background: #fff;
  color: #ee1c47;
  border-radius: 2px;
  padding: 30px 0px;
  height: 450px;
  box-shadow: 0 0 1px;
  margin-left: 20px;
  padding-right: 10px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 20px;
  padding-left: 20px;
  margin: 30px 0;
}
.wrapper h1 {
  font-size: 30px;
  padding-left: 40px;
}
.input-box input {
  width: 100%;
  height: 100%;
  background: #3c363685;
  border: none;
  outline: blue;
  border: 1px;
  border-radius: 4px;
  font-size: 16px;
  padding-left: 20px;
  padding: 20px 45px 20px 20px;
}
.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding-left: 20px;
  margin: 15px 0 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
}
.wrapper .remember-forgot a {
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  padding-bottom: 18px;
  color: #fff;
}
::placeholder {
  font-size: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.button {
  padding: 8px;
  padding-right: 100px;
  padding-left: 100px;
  margin-left: 40px;
  background-color: red;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  border: 1px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}
.button:hover {
  color: #fff;
  background-color: #000;
  transition: 1s ease-in-out;
}
.pro1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  text-align: center;
  padding-bottom: 22px;
}
.pro2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  transition: 1s ease-in-out;
}
.menu {
  display: none;
}
.pro3 {
  margin-left: 150px;
  font-family: cursive;
  font-size: 10px;
  padding-right: 100px;
  color: red;
}
.libb h1 {
  font-size: 400px;
  background: #ee1c47;
}
.ffe {
  margin-bottom: 50px;
}
