/* ----------------------------
    Import file 
-------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");

/* ----------------------------
    Common css start
-------------------------------*/
body {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
}
.container {
  max-width: 1170px;
  margin: auto;
}
header {
  padding-top: 60px;
}
/* ----------------------------
    Navbar css start
-------------------------------*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-icon {
  display: none;
}
.navbar-brand h2 {
  font-size: 24px;
  color: #3a3a3a;
  letter-spacing: 1px;
}
nav > ul {
  display: flex;
}
nav > ul > li {
  list-style-type: none;
  margin-right: 34px;
}
nav > ul > li > a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
nav > ul > li:hover > a {
  color: #e02c6d;
}
.mobile-cart {
  display: none;
}
/* ----------------------------
    Banner css start
-------------------------------*/
.banner {
  display: flex;
  margin-top: 50px;
  margin-bottom: 100px;
  align-items: center;
}
.banner-title {
  font-size: 52px;
  line-height: 70px;
  color: #3a3a3a;
  margin-bottom: 16px;
}
.banner-text {
  width: 70%;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #3a3a3a;
  margin-bottom: 30px;
}
.banner-btn {
  padding: 12px 20px;
  background-color: #e02c6d;
  border: none;
  border-radius: 41px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}
.banner-btn:hover {
  color: #fab5b5;
  cursor: pointer;
}
.fa-arrow-right {
  margin-left: 10px;
}

.banner-right img {
  width: 440px;
  height: 414px;
}
.banner-right > img:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.5s ease-in-out;
}
/* -------------------------------
    All brands css start
----------------------------------*/
.all-brands {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.all-brands > img {
  margin-right: 4em;
}

/* -------------------------------
    Popular collection css start
----------------------------------*/

#popular-collection h2 {
  text-align: center;
  color: #3a3a3a;
  font-weight: 600;
  font-size: 28px;
  padding: 10px;
}
.popular-collections {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.collection {
  background: #ffffff;
  padding: 14px;
  border-radius: 5px;
  height: 476px;
  box-shadow: 1px 1px 5px 5px rgb(206, 205, 205);
}
.collection-img img {
  width: 100%;
  height: 256px;
}
.collection-name {
  color: #18191f;
  font-weight: 500;
  font-size: 28px;
  margin-top: 16px;
}
.collection-price {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  margin-top: 6px;
}
.collection-star {
  margin-top: 6px;
}
.fa-star {
  color: #fb8200;
}
.collection-text {
  width: 90%;
  color: #787885;
  font-size: 12px;
  margin-top: 10px;
}
.rating {
  margin-left: 10px;
}
.show-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.show-more a {
  text-decoration: none;
  color: #e02c6d;
}
/* -------------------------------
    Region css start
----------------------------------*/
#suppliers {
  margin-top: 50px;
}
.suppliers-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  color: #3a3a3a;
}
.regions {
  display: flex;
  justify-content: space-between;
}
.region {
  display: flex;
  align-items: center;
}
.region img {
  margin-right: 5px;
}
.region-title {
  font-size: 16px;
  font-weight: 600;
  color: #3a3a3a;
}
.region:hover .region-title {
  color: #e02c6d;
  cursor: pointer;
}

.region:hover img {
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}
.suppliers-btn-section {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.suppliers-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-radius: 41px;
  font-size: 16px;
  font-weight: bold;
  color: #e02c6d;
  border: 2px solid #e02c6d;
}
.suppliers-btn:hover {
  cursor: pointer;
  background-color: #e02c6d;
  color: #ffffff;
}
/* -------------------------------
    Footer css start
----------------------------------*/
footer {
  margin-top: 100px;
  height: 200px;
  background: #0a0826;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-text {
  color: #ffffff;
  text-align: center;
}
.footer-text > h4 {
  font-size: 24px;
  margin-bottom: 5px;
}
.footer-text > p {
  font-size: 14px;
}
.author-name {
  color: #e02c6d;
}
.social-links {
  margin-top: 14px;
}
.social-links > i {
  margin-right: 16px;
  font-size: 17px;
}
.social-links > i:hover {
  cursor: pointer;
  color: #e02c6d;
}

/* ----------------------------------------
    Media queries start for mobile device
-------------------------------------------*/
@media only screen and (max-width: 688px) {
  header {
    padding-top: 40px;
  }
  nav {
    padding: 0px 20px;
  }
  .navbar-icon {
    display: inline;
    color: #3a3a3a;
    font-size: 16px;
  }
  .navbar-brand h2 {
    font-size: 20px;
  }
  nav > ul {
    display: none;
  }
  .mobile-cart {
    display: inline;
  }
  .mobile-cart > a {
    text-decoration: none;
    color: #3a3a3a;
  }
  .banner {
    flex-direction: column-reverse;
    margin: 10px;
    text-align: center;
  }
  .banner-left {
    margin-top: 50px;
  }
  .banner-left h1 {
    font-size: 35px;
    line-height: 40px;
  }
  .banner-left p {
    width: 100%;
    text-align: center;
  }
  .banner-right > img {
    width: 70%;
    height: 50%;
    margin-top: 50px;
  }
  .all-brands {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .all-brands > img {
    width: 15%;
    margin: 1em;
  }
  #popular-collection {
    margin: 20px;
  }
  .popular-collections {
    grid-template-columns: repeat(1, 1fr);
  }
  .regions {
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 10px;
  }
}

/* ----------------------------------------
    Media queries start for Tablet device
-------------------------------------------*/
@media only screen and (min-width: 688px) and (max-width: 992px) {
  header {
    padding-top: 40px;
  }
  nav {
    padding: 0px 20px;
  }
  .navbar-icon {
    display: inline;
    color: #3a3a3a;
    font-size: 24px;
  }
  .navbar-brand h2 {
    font-size: 24px;
  }
  nav > ul {
    display: none;
  }
  .mobile-cart {
    display: inline;
  }
  .mobile-cart > a {
    text-decoration: none;
    color: #3a3a3a;
    font-size: 24px;
  }
  .banner {
    flex-direction: column-reverse;
    margin: 10px;
    text-align: center;
  }
  .banner-left {
    margin-top: 50px;
  }
  .banner-left h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .banner-left p {
    width: 100%;
    text-align: center;
  }
  .banner-right > img {
    width: 80%;
    height: 50%;
    margin-top: 50px;
  }
  .all-brands {
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .all-brands > img {
    width: 10%;
    margin-right: 1.5em;
  }
  #popular-collection {
    margin: 20px;
  }
  .popular-collections {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions {
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 10px;
  }
}
