body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff8f8;
}

/******************************************
             header style
******************************************/

.shopping-cart,
.drop-menu {
  display: none;
}
.body-container {
  width: 85%;
  margin: auto;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
}
.nav-icon h2 {
  color: #3a3a3a;
  margin: 0;
  font-size: 1.8rem;
}
.menubar ul {
  display: flex;
}
.menubar a {
  font-size: 20px;
  margin-right: 25px;
  text-decoration: none;
  color: #3a3a3a;
}
.menubar a:hover {
  color: #e02c6d;
}
.menubar li {
  list-style: none;
  font-weight: 600;
}
.fa-search,
.fa-shopping-cart {
  font-size: 1.2rem;
}

/******************************************    
      start-journey section/  section 1 
******************************************/

.start-journey {
  margin-bottom: 100px;
}

.special-color {
  color: #e02c6d;
}
.start-journey .influencer {
  padding: 20px 0 120px 0;
  display: flex;
  justify-content: space-between;
}
/* .start-journey-left {
    width: 40%;
} */
.start-journey-left h1 {
  margin-bottom: 10px;
  color: #3a3a3a;
  font-weight: bolder;
  font-size: 2.2rem;
}
.start-journey-left p {
  font-weight: bolder;
  color: #3a3a3a;
  width: 70%;
  margin-bottom: 50px;
}
.start-journey-left a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  background-color: #e02c6d;
  border-radius: 30px;
  box-shadow: 3px 5px 10px gray;
}
.start-journey-left a:hover {
  font-weight: bold;
  background-color: white;
  border: 1px solid #e02c6d;
  color: #e02c6d;
}
.fa-arrow-right {
  margin-left: 10px;
}
/* .start-journey-right{
    width: 30%;
} */
.start-journey-right .product-img img {
  float: right;
  /* width: 100%; */
}
.start-journey-right .product-img {
  position: relative;
}
#top-camera {
  transition: transform 2s;
  width: 90%;
  position: absolute;
  top: 20px;
  right: 20px;
}
#top-camera:hover {
  transform: scale(1.1);
}

/*******************************
        brand logo area 
*******************************/

.brand-logos {
  align-items: center;
  margin: 10px 0;
  width: 90%;
  justify-content: space-around;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.brand-logos img {
  width: 70%;
  padding: 10px 10px;
  text-align: center;
}
.start-journey hr {
  width: 90%;
}
/***************************************
         Popular collection 
****************************************/

.popular-collection {
  margin-bottom: 50px;
}
.popular-collection h2 {
  text-align: center;
  color: #3a3a3a;
  font-size: 1.8rem;
  margin-bottom: 80px;
}
.popular-collection .popular-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px 35px;
  justify-content: space-between;
  align-items: center;
  /* text-align: center; */
}
.popular-products .product {
  transition: transform 1s;
  box-shadow: 5px 5px 10px gray;
  border-radius: 20px;
  padding: 20px 20px;
  background-color: white;
}
.popular-products .product:hover {
  transform: scale(1.02);
}
.popular-products .product img {
  border-radius: 10px;
  width: 100%;
}
.product h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
}
.product h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}
.popular-products .fas {
  font-size: 10px;
  color: orange;
  margin-right: 3px;
}
.product p {
  color: #3a3a3a;
  margin: 5px 0 0px 0;
}
.see-more {
  text-decoration: none;
  float: right;
  padding: 50px 0;
  font-weight: bold;
  color: #e02c6d;
}
.see-more .fa-arrow-right {
  align-items: center;
  margin-left: 5px;
  color: #e02c6d;
  font-size: 17px;
}

/**************************************
           join-us-section
***************************************/

.join-us-section {
  margin: 80px 0;
  padding: 80px 0;
}
.join-us-section .join-us {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  /* justify-content: space-between; */
}
.join-us .img-area img {
  border-radius: 10px;
  width: 90%;
}
.join-area h2 {
  color: #3a3a3a;
  font-size: 1.5rem;
}
.join-area p {
  margin-bottom: 40px;
  width: 90%;
  color: #3a3a3a;
}
.join-area .join-now {
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background-color: #e02c6d;
}
.join-area .fa-arrow-right {
  color: white;
  font-size: 15px;
}

/*************************************
            Footer area       
**************************************/

footer {
  text-align: center;
  padding: 20px 0;
  color: white;
  background-color: #0a0826;
}
footer .fab {
  color: white;
  font-size: 20px;
  margin-right: 10px;
}
.footer-info h2 {
  margin-bottom: 0;
}
