

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

.work-sans-font {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ---shared styles--- */

.text-color-gray{
  color: #727272;
}

.primary-color {
color: rgb(255, 144, 14);
}
  main{
   max-width: 90vw;
     margin: 0 auto;
  }

  main >section{
    margin-top: 130px;
  }
   
  .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    
    
  }


.btn-primary {
  border-radius: 8px;
  color: rgb(255, 255, 255);
   background-color: #FF900E;
  font-size: 1.2rem;
  padding: 20px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}

.display-flex {
  display: flex;
}

.bg-color {
  background: rgba(255, 144, 14, 0.1);
}


.banner-description, .our-features p{
    margin: 20px 0;
   }

/* ---navbar styles--- */
.navbar {
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 3rem;
  font-weight: 700;
}
.nav-links {
  text-decoration: none;
  font-weight: 500;
}

.nav-items {
  list-style: none;
  margin-right: 30px;
}

.navbar, .banner {
  max-width: 90vw;
  margin: 0 auto;
}



/* banner secrtion   */
.banner-container{
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;

}

.banner-title {
 font-weight: 700;
  font-size: 4rem;
 color: #131313;

  
}

.banner-image{
  width: 100%;

}


/* ----team section styles--- */
.team{
  align-items: center;
  gap: 60px;
  padding: 0 50px;
  
}

.team-img-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.our-features{
  width: 530px;

}

#quick-list{
  font-weight: 500;
}


 



@media screen and (max-width: 576px) {

  .navbar,
  .nav-items,
  .our-features
  {
    
      flex-direction: column;
}
   .team-img-container{
    grid-template-columns: repeat(1, 1fr);
   }
   
   .our-features{
    max-width: 100vw;
    padding: 0 20px;
   }
   

   /* nav secction  */
   .navbar{
    padding-top: 10px;
    gap: 10px;
   }

   .brand{
      font-size: 1.8rem;
   }

   /* banner section  */

   .banner{
    margin-top: 20px;
      padding: 0 10px;
   }
 
   .banner-description, .our-features p{
    margin: 20px 0;
   }
   
   .banner-title{
      font-size: 2.5rem;
   }
  
   /* team */
   .team{
    flex-direction: column-reverse;
   }

  
}


@media screen and (min-width: 768px)  and (max-width: 1024px) {

  .navbar,
  .nav-items,
  .our-features
  {
    
      flex-direction: row;
}
   .team-img-container{
    grid-template-columns: repeat(1, 1fr);
   }
   
   .our-features{
    max-width: 100vw;
    padding: 0 20px;
   }
   

   /* nav secction  */
   .navbar{
    padding-top: 10px;
    gap: 10px;
   }

   .brand{
      font-size: 2.2rem;
   }

   /* banner section  */

   .banner{
    margin-top: 20px;
      padding: 0 10px;
   }

  
   .banner-description{
    margin: 20px 0;
   }
   
   .banner-title{
      font-size: 3rem;
   }

   /* team  */
   .team{
    flex-direction: column-reverse;
   }

   .team-img-container{
    grid-template-columns: repeat(2, 1fr);
   }

   .banner-description, .our-features p{
    margin: 20px 0;
   }
   

  
}
