/* font */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&family=Poppins:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* variabls */
:root {
  --color1: #3a3a3a;
  --btn-bg: #e02c6d;
  --footer-bg: #0a0826;
}
/* custom class start */
.container-fluid {
  width: 100%;
  background: #e7e9ea;
  padding: 40px 0;
}
.container {
  width: 80%;
  margin: 0 auto;
}
.section-title {
  color: var(--color1);
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
img {
  width: 100%;
  object-fit: cover;
}
p,
a,
h3 {
  font-family: "Oswald", sans-serif;
}
a {
  text-decoration: none;
}
.m-b {
  margin-bottom: 100px;
}
.btn {
  background-color: var(--btn-bg);
  width: 160px;
  height: 45px;
  color: white;
  font-weight: 500;
  border: 2px solid var(--btn-bg);
}
.btn:hover {
  background: transparent;
  color: var(--btn-bg);
  transition: 0.3s all ease;
  border: 2px solid var(--btn-bg);
}
.btn-circle {
  border-radius: 38px;
}
/* custom class end */
/* nav-section section start */
.nav-section {
  display: flex;
  justify-content: space-between;
  margin: 80px 0;
}
.menu ul {
  display: flex;
}
.menu ul li,
ul > span {
  list-style-type: none;
  margin-left: 34px;
}
.menu ul li a {
  color: var(--color1);
  font-size: 17px;
}
.menu ul li:hover a {
  color: var(--btn-bg);
  transition: 0.3s all ease;
}
.logo h3 {
  color: var(--color1);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
}
.fa-search {
  padding-top: 7px;
}
.fa-shopping-cart {
  font-size: 1.4em;
}
/* nav-section section end */
/* banner section start */
.banner-section {
  display: flex;
  justify-content: space-between;
}
.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-content h1 {
  font-size: 52px;
  color: var(--color1);
}
.banner-content p {
  color: var(--color1);
  margin: 16px 0;
}
.banner-img {
  background-image: url(../img/all-other-img/Circle\ design.svg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
}
.banner-section:hover .banner-img img {
  transform: scale(1.1);
  transition: 0.5s all linear;
}
.extra {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1px 1px 3px 1px;
}
small {
  font-size: 1.4rem;
  margin-left: -14px;
  margin-bottom: 4px;
}
/* banner section end */
/* branding section start */
.brand {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 60px;
  padding: 40px 0;
  margin: 100px 0px;
  border-top: 1px solid rgb(231, 196, 196);
  border-bottom: 1px solid rgb(231, 196, 196);
  display: none;
}
.brand-img {
  width: 90px;
  height: 60px;
  cursor: pointer;
}
.brand-img img {
  filter: grayscale(100%);
}
.brand-img img:hover {
  filter: grayscale(0);
  transition: 0.3s all ease;
}
/* branding section end */

/* content section start */
article {
  position: relative;
}
.content {
  padding: 17px 14px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
}

.single-content {
  background: #ffffff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 30px;
}
.single-content:hover {
  transform: translateY(-15px);
  transition: 0.4s all ease;
}
.single-content:hover img {
  transform: scale(1.2);
  transition: 0.4s all ease;
}
.content-title h3 {
  font-size: 28px;
  color: #18191f;
  padding-top: 15px;
  margin-bottom: 6px;
}
.content-title h4 {
  font-size: 24px;
  color: black;
  margin-bottom: 8px;
}
.content-img {
  width: 350px;
  height: 256px;
  overflow: hidden;
}
.single-content p {
  color: #787885;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  margin-top: 6px;
}
.fa-star-half-alt,
.fa-star {
  color: goldenrod;
}
.ratings {
  color: gray;
  margin-left: 4px;
}
.see-more {
  position: absolute;
  right: 30px;
  bottom: -30px;
  color: #e02c6dde;
}
.see-more:hover {
  color: hotpink;
  transition: 0.4s all ease;
}
/* content section end */
/* hot product section start*/
.hot-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item {
  flex-basis: 45%;
}
.item {
  flex-basis: 45%;
}
.item h4 {
  font-size: 1.4em;
}
.item h2 {
  font-size: 3em;
  margin: 20px 0;
}
.item p {
  margin-bottom: 20px;
}
/* hot product section end*/
/* footer section start */
footer {
  background-color: var(--footer-bg);
  height: 239px;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
}
footer h3 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.social-icon {
  display: flex;
  justify-content: center;
  margin: 17px 0 0 0;
}
.icon {
  width: 30px;
  height: auto;
  cursor: pointer;
  color: white;
  background-color: #17152c;
  padding: 5px;
  border-radius: 50%;
  margin-right: 8px;
  display: grid;
  place-items: center;
}
/* footer section end */
/* sesponsive css  start*/
@media screen and (min-width: 577px) and (max-width: 1100px) {
  .container {
    width: 85%;
  }
  .nav-section {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-direction: column;
  }
  .logo {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .nav-section .menu{
      flex-basis: 100%;
     margin-left: 100px;
  }
  .banner-content h1 {
    font-size: 40px;
  }
  .banner-section {
    flex-direction: column;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .banner-img{
      margin-top: 30px;
  }
  .section-title{
      margin-top: 40px;
  }
  .single-content {
    width: 45%;
    text-align: center;
  }
  .content-img {
    width: 100%;
  }
  .brand {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .container {
    width: 95%;
  }
  .banner-content h1 {
    font-size: 32px;
  }
  .nav-section {
    flex-direction: column;
  }
  .menu {
    display: none;
  }
  .logo{
      text-align: center;
  }
  
  .fa-search {
    padding-top: 1px;
    margin-right: -5px;
    margin-bottom: 5px;
  }
  .banner-section {
    flex-direction: column;
    flex-basis: 95%;
    align-items: center;
    justify-content: space-between;
  }
  .single-content {
    flex-basis: 95%;
    text-align: center;
  }
  .brand {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 30x;
    display: none;
  }
  .see-more {
    position: absolute;
    right: 30px;
    bottom: 0px;
    color: #e02c6dde;
  }
  .product-img {
    width: 80%;
    margin-bottom: 30px;
  }
  .hot-product {
    flex-basis: 90%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}

/* sesponsive css  end*/