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

/* shared styles */

.display-flex {
  display: flex;
}
.btn-primary {
  background-color: #ff900e;
  padding: 20px 25px;
  font-size: 1.25rem;
  color: white;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
}
/* dark 03 */
.text-gray {
  color: #727272;
}
/* dark 02 */
.text-darkgray {
  color: #424242;
}
/* dark 01 */
.text-black {
  color: #131313;
}

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

main {
  max-width: 1440px;
  margin: 0 auto;
}
main > section {
  margin-top: 120px;
}
.section-title {
  font-size: 3rem;
  font-weight: 700;
}
/* header styles */
/* navbar styles */
.navbar {
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-weight: 700;
  font-size: 3rem;
}
.nav-links {
  gap: 20px;
}
.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-title {
  font-weight: 700;
  font-size: 4rem;
}

.banner-image {
  width: 100%;
  margin-bottom: 35px;
}

/* teams and feature related styles */
.teams {
  align-items: center;
}
.team-img-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.our-features {
  margin-left: 100px;
  max-width: 600px;
}
#text-quick-list {
  font-weight: 500;
}
#text-features {
  color: #ff900e;
}

/* features section related styles */
.features {
  gap: 120px;
  align-items: center;
}
#feature-section-title {
  border-left: 5px solid #ff900e;
  padding: 0 0 0 20px;
  margin: 0;
}
.feature-card {
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
  margin-top: 20px;
}
.feature-card .feature-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0;
}
#experience-badge {
  padding: 35px 30px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: -65px;
  margin-top: -80px;
}

#experience-year {
  font-size: 3rem;
  font-weight: 700;
}
.featured-architect {
  width: 100%;
}

/* facts related styles */
.facts-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  
}

.fact-card {
  border: 1px solid #ff900e;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 240px;
  height: 240px;
  padding-top: 35px;
}

.fact-number {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 5px;
}
.fact-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
}
.fact-description {
  max-width: 540px;
}

/* sponsor related styles */
.sponsor-info {
  max-width: 540px;
  margin: 50px auto;
  text-align: center;
}

.sponsor-companies {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}
.sponsor-companies img {
  filter: grayscale(100%);
}

/* footer styles */
.footer {
  background-color: antiquewhite;
  height: 100px;
  margin-top: 100px;
  max-width: 1440px;
  justify-content: center;
  align-items: center;
}

/* responsive media query */
@media screen and (max-width: 576px) {
  .navbar,
  .nav-links,
  .features,
  .teams {
    flex-direction: column;
  }
  .team-img-container,
  .facts-container,
  .sponsor-companies {
    grid-template-columns: 1fr;
  }
  .facts-container,
  .sponsor-companies {
    justify-items: center;
    gap: 50px;
  }
  .our-features {
    margin-left: 20px;
  }
  .experience-badge-container{
    display: flex;
    justify-content: center;
  }
  #experience-badge {
    margin: 20px;
  }
  .copyright,
  .some-facts > .section-title, .fact-description{
    text-align: center;
  }
}

/* meadium devices style */
@media screen and (min-width: 576px) and (max-width: 992px) {
  .teams,
  .features {
    flex-direction: column;
  }
  .our-features {
    margin: 20px auto;
  }
  .sponsor-companies,
  .facts-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-items: center;
  }
  .experience-badge-container{
    display: flex;
    justify-content: center;
  }
  #experience-badge {
    margin: 20px;
  }
}
