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

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


/* Shared Styles */
.display-flex{
    display:flex;
}
/* dark 02 */
.text-gray{
    color: #424242;
}
/* dark 03 */
.text-light-gray {
    color:#727272;
}

.bg-light{
    background-color: rgba(255, 144, 14, 0.1);
}
.btn-primary{
    padding: 20px 25px;
    color: white;
    background-color: #ff900e;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
}

main{
    max-width:1440px;
    margin: 0 auto;
}
main > section{
    margin-top: 130px;
}
.text-primary{
    color:#ff900e;
}
.section-title{
    font-size: 2.8rem;
    font-weight: 700;
}
/* navbar style */
.navbar{
    justify-content: space-between;
    align-items: center ;
}

.brand{
    font-weight: 700;
    font-size: 3rem;
}
.nav_item{
    list-style:none;
    margin-right: 30px;
}

.nav_link{
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
}

.navbar, .banner, footer{
    max-width: 1440px;
    margin: 0 auto;
}
/* banner related style */
.banner-content{
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}
.banner-title{
    font-size: 4rem;
}
.banner-image{
    width:100%;
}
/* teams and feature related style */
.teams{
    align-items: center;
    gap: 130px;
}
.team-img-container{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.our-features{
    max-width:530px;
}

#quick-list{
    font-weight: 500;
}
/* Feature style */
#feature-section-title{
    border-left: 5px solid #ff900e;
    padding-left: 20px;

}
.features{
    gap: 146px;
}
.feature-card{
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
    border-radius:8px;
    padding: 30px;
    margin-bottom:20px;
    
}
.feature-title{
    font-size: 1.2rem;
    font-weight: 700;

}
#experience-badge{
    padding: 45px 42px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: -92px;
    margin-left: -100px;
}
#experience-year{
    font-size: 4rem;
    font-weight: 700
}
/* Fact card style */
.facts-container{
       display:grid;
       grid-template-columns: repeat(4,1fr);
       margin-top: 100px;       
}
.fact-card{
    border:1px solid #ff900e;
    width: 240px;
    height: 240px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.fact-description{
    max-width: 540px;
}


.fact-number{
    font-size: 2.8rem;
    font-weight: 600;
    margin-top:5px;
    margin-bottom:10px;
}
.fact-name{
    font-weight: 1.2rem;
    font-weight: 600;
    margin-top:10px;
}
/* Sponsor related Style */
.sponsor-info{
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}
.sponsor-companies{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    filter: grayscale(100%);
}

/* Footer Style */
footer{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:130px;
}
.footer-content{
   font-size: 1.2rem;
    margin: 40px 40px;
}
/* Responsive Media Query */
@media screen and (max-width: 576px){
    .navbar, .nav_links, .teams , .features{
        flex-direction : column;
    }
    .features > img{
        width: 100%;
    }
    .features .image{
        display: flex;
        flex-direction: column;
    }
    .team-img-container, .facts-container, .sponsor-companies{
        grid-template-columns: repeat(1,1fr);
    }
    .facts-container, .sponsor-companies, .features{
        justify-items: center;
        gap:24px;
    }
    .our-features{
        width: 100%;
        margin-left: 50px;
    }
    footer{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 50px auto;
    }
    #experience-badge{
        margin:30px auto;
        
        
    }
}

@media screen and (576px<=width<=992px){
    .teams, .features{
        flex-direction: column;
    }
    .our-features{
        margin: 50px auto;
        
    }
    .facts-container , .sponsor-companies{
        grid-template-columns: repeat(3,1fr);
        gap: 24px;
        justify-items: center;
    }
    footer{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 100px auto;
    }
}