@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;
}

/* shared styles */

.display-flex {
    display: flex;
}

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

.text-primary {
    color: #FF900E;
}

/* dark-01 */
.text-black {
    color: #131313;
}

/* dark-02 */
.text-grey {
    color: #424242;
}

/* dark-03 */
.text-light-grey {
    color: #727272; 
}

.btn-primary {
    background-color: #FF900E;
    color: white;
    border-radius: 8px;
    border: none;
    font-size: 1.3rem;
    font-weight: semibold;
    padding: 20px 25px;   
    cursor: pointer;
}

main {
    max-width: 1440px;
    margin: 0 auto;
}

main > section {
    margin: 130px auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
}

/* header styles */

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

.brand-name {
    font-weight: bold;
    font-size: 3rem;
}
.nav-item {
    list-style: none;
    margin-right: 30px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

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

/* banner related styles */
.banner-content {
   width: 50%;
   margin: 0 auto;
   text-align: center;
   margin-bottom: 50px;
}

.banner-title {
    font-size: 4rem;
    font-weight: bold;
}

.banner-image {
    width: 100%;
    height: auto;
}

/* section styles */

/* team & feature related styles */
.teams {
    width: 80%;
    gap: 74px;
    text-align: center;
}

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

/* .our-features {
    max-width: 530px;
} */

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

/* some facts related styles */
.facts {
    width: 90%;
}

.facts-description {
    max-width: 540px;
    margin-bottom: 80px;
}

.facts-container {
   margin-left: 50px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
}

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

.fact-no {
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

.fact-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 10px;
}

/* sponsor related styles */
.sponsors {
    width: 90%;
}

.sponsor-info {
    max-width: 550px;
    margin: 50px auto;
    text-align: center;
}

.sponsors-description {
    max-width: 550px;
    margin-bottom: 80px;
}

.sponsor-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
}

.sponsor-container img {
   filter: grayscale(100%);
}

/* Feature you will enjoy section related styles  */

.features {
    width: 85%;
    margin: 0 auto;
    gap: 140px;
}

#title-line {
    border-left: 5px solid #FF900E;
    padding: 15px;
}

.feature-card {
    padding: 30px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    border-radius: 8px;
}

.feature-title {
    font-size: 1.23rem;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
}

.featured-architect img {
        width: 100%;
}

#experience-badge {
    padding: 45px 42px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: -100px;
    margin-top: -100px;
}

#experience-year {
    font-size: 4rem;
    font-weight: bold;
}

/* footer styles */
footer {
    width: 90%;
    margin: 0 auto;
    background-color: #FFF4E7;
    text-align: center;
    padding: 25px;
}

/* responsive media query */
/* small-sized devices   */
@media screen and (max-width: 576px) {
    .navbar, 
    .nav-links, 
    .teams, 
    .features {
        flex-direction: column;       
    }

    .banner-content {
        width: 100%;
    }

    .team-img-container, 
    .facts-container,
    .sponsor-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    }

    .team-img-container img {
        width: 100%;
        height: auto;
    }

    .facts-container {
        justify-items: center;
        margin-left: 0px;
    }

    .facts-description {
        margin-bottom: 50px;
   } 
   
   #experience-badge {
    margin: 20px auto;
    padding: 22px;
   }

   .features {
    gap: 50px;
   }
}

/* medium-sized devices  */
@media screen and (min-width: 577px) and (max-width: 992px) {
    .teams,
    .features {
        flex-direction: column;
        gap: 10px;
    }

    .team-img-container img {
        width: 100%;
        height: auto;
    }

     .facts-description {
        margin-bottom: 50px;
   } 

     .fact-card {
        width: 100%;
    }

    .facts-container {
        grid-template-columns: repeat(2, 1fr); 
        gap:20px;
        margin-left: 0px;
    }

    .sponsor-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    #experience-badge {
    margin: 20px auto;
    padding: 22px;
   }
 
}