@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* universal css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* common css with sheard class */
.light-gray {
  color: #727272;
}
.dark-03 {
  color: #131313;
}
.primary-color {
  color: #ff900e;
}
.main-btn {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  padding: 20px 25px;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  background-color: #ff900e;
}
.section-title {
  font-size: 2.9rem;
  font-weight: 700;
  color: #131313;
}
.description {
  font-weight: 400;
  font-size: 1rem;
  color: #727272;
}
.display-flex {
  display: flex;
}
img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
main {
  max-width: 1440px;
  margin: 0 auto;
}

main > section {
  margin: 130px auto;
}

/* common css with sheard class */

/* header section start here */
.hero-section {
  background-color: rgba(255, 144, 14, 0.1);
}
.navbar {
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-top: 55px;
}

.nav-item {
  margin-left: 20px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: #424242;
  font-size: 1.09rem;
}

/* banner section start heare */
.banner {
  max-width: 1440px;
  margin: 100px auto;
}
.banner-info {
  margin-bottom: 50px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.banner-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 50px;
}
.banner-info > button {
  margin-top: 50px;
}
.banner-img {
  margin-top: 50px;
  padding-bottom: 50px;
}

/* header section end here */

/* feature section start here  */
.feature {
  justify-content: center;
  align-items: center;
}
.feature-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-info {
  max-width: 540px;
  margin-left: 80px;
}
.feature-info span {
  font-weight: 700;
}
#quick {
  font-weight: 500;
  color: #727272;
}
.feature-info > button {
  margin-top: 50px;
}

/* feature section ends here */

/* product-section start here */
.product {
  gap: 150px;
}
.product-header {
  margin-bottom: 30px;
}
.product-header > h2 {
  border-left: 5px solid #ff900e;
  padding-left: 20px;
  margin-bottom: 24px;
}
.product-card-container {
  border-radius: 8px;
  padding: 30px 35px;
  box-shadow: 5px 5px 5px #f3f2f2;
  margin-bottom: 20px;
}
.card-title {
  font-weight: 900;
  font-size: 1.25rem;
  color: #131313;
  margin-bottom: 10px;
}
.product-btn {
  margin-left: -80px;
  margin-top: -80px;
}
/* product-section end here */

/* facts section start here  */
.fact-card-container {
  display: grid;
  margin-top: 100px;
  grid-template-columns: repeat(4, 1fr);
}
.fact-card {
  border: 2px solid #ff900e;
  padding: 36px;
  max-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
}
.card-img {
  max-width: 46px;
}
.card-number {
  width: 150px;
}
/* facts section end here  */

/* sponsors section starts here  */
.sponsors {
  text-align: center;
}
.sponsors-images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 100px;
  filter: grayscale(100);
  margin: 50px 160px;
}

/* sponsors section ends here  */

/* footer section start here  */
footer {
  max-width: 1440px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 144, 14, 0.1);
  text-align: center;
  margin: 0 auto;
  border-radius: 8px;
}

/* footer section end here  */

/* small device responsive */

@media screen and (max-width: 576px) {
  .navbar,
  .nav-links,
  .feature,
  .product {
    flex-direction: column;
  }

  .nav-links {
    margin-top: 25px;
    gap: 25px;
  }
  .nav-link {
    font-size: 1.5rem;
  }
  .banner {
    margin-top: 50px;
  }

  .feature-images {
    grid-template-columns: 1fr;
  }
  .feature-info {
    margin: 50px;
  }
  .product {
    margin: 0 15px;
  }
  .product-header > h2 {
    padding-left: 10px;
  }
  .product-card-container {
    padding: 15px;
  }
  .product-btn {
    margin: 25px 60px;
  }
  .fact {
    margin: 0 15px;
  }
  .fact-card-container {
    margin: 50px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sponsors-images {
    margin: 50px 130px;
    grid-template-columns: repeat(1, 1fr);
    gap: 100px;
  }
}

/* css for midum device */

@media screen and (min-width: 576px) and (max-width: 992px) {
  .navbar {
    margin: 0 20px;
  }
  .feature {
    flex-direction: column;
    gap: 50px;
  }
  .product {
    flex-direction: column;
    margin: 0 30px;
  }
  .fact {
    margin: 0 30px;
  }
  .product-btn {
    margin: 25px 60px;
  }
  .sponsors-images {
    margin: 50px 160px;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
  }
}
