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



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

/* shred styles */
.bg-primary{
  background-color: rgba(255, 144, 14, 0.1);
}
.display-flex{
  display: flex;
}
.text-gray-02{
  color: rgba(66, 66, 66, 1);
}
.text-light-gray-03{
  color: #727272;
}
.btn-primary{
  background-color: rgba(255, 144, 14, 1);
  color: white;
  padding: 20px 25px;
  border-radius: 10px;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
}
main > section{
  margin-top: 130px;
}
.section-titlle{
  font-size: 2.8rem;
  font-weight: 700;
}
.fact-des{
  text-align: center;
  font-size: 1.25;
  font-weight: 600;
} 
/* Main style */
main{
  max-width: 1440px;
  margin: 0 auto;
}
/* Header styles */

/*nav styles */
.navbar{
  justify-content: space-between;
  align-items: center;
}
.brand{
  font-size: 3rem;
  font-weight: 700;
}
.nav-item{
  list-style: none;
  margin-right: 30px;
  
}
.nav-link{
  text-decoration: none;
  font-weight: 500;
}

.navbar, .banner{
  max-width: 1440px;
  margin: 0 auto;
}

/* Banner styles */
.banner-content{
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
.banner-tittle{
  font-size: 4rem;
  font-weight: 700;
}
.banner-img{
  width: 100%;
}

/* Team feature section */
.teams{
  align-items: center;
  
}
.team_img_containers{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team_features{
  margin-left: 130px;
  max-width: 530px;
}

#quick-list{
  font-weight: 500;
}
#featurea{
  color: rgba(255, 144, 14, 1);
}

/*Features you will enjoy section */
.features{
  gap: 140px;
}

#section-tittle-border{
  border-left: 5px solid #FF900E;
  padding-left: 21px;
}
.feature-card .feature-tittle{
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0px;
  margin-bottom: 0px;
}
.feature-card{
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
#experiance-badge{
  padding: 45px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: -100px;
  margin-top: -100px;
}
#experience-year{
  font-size: 4rem;
  font-weight: 700;
}
.features-architect img{
  width: 100%;
}


/* Featuere section */
.facts-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


.fact{
  border: 1px solid rgba(255, 144, 14, 1);
  border-radius: 8px;
  padding: 45px 35px 60px;
  width: 240px;
  height: 240px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fact-number{
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
}

.team-des{
  max-width: 500px;
}


/* sponsor related styles */
.sponsor-info{
  max-width: 540px;
  margin: 50px auto;
  text-align: center;
}
.sponsor-tittle{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.sponsor-company{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 155px;
}
.sponsor-company img{
  filter: grayscale(100%);
}


/* ____________________________________________________________________________________________ */


/* Responsivenes media query  for small device*/

@media screen and (max-width: 576px) {
  .navbar, 
  .nav-links,
  .features, 
  .teams{
    flex-direction: column;
  }
  .team_img_containers,
  .facts-container,
  .sponsor-company{
    grid-template-columns: repeat(1, 1fr);
  } 
  .team_features{
    margin-left: 20px;
  }
 
  
  .fact{
   margin: 24px auto;
}
.sponsor-company{
  justify-items: center;
  gap: 50px;
}
#experiance-badge{
  margin-top: 20px;
  margin-left: 20px;
}
}



/* Responsivenes media query  for Medium device*/

@media screen and (min-width: 576px) and (max-width:992px) {
  .navbar, 
  .nav-links, 
  .features,
  .teams{
    flex-direction: column;
  }
  .team_img_containers,
  .facts-container,
  .sponsor-company{
    grid-template-columns: repeat(2, 1fr);
  } 
  .team_features{
    margin-left: 50px auto;
  }
  .fact{
    margin: 24px auto;
  }
  .sponsor-company{
  justify-items: center;
  gap: 50px;
}
#experiance-badge{
  margin-top: 20px;
  margin-left: 20px;
}
}