@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 style */
.display-flex{
    display: flex;
}
.text-primary{
    color: #ff900e;
}
/* dark02 */
.text-gray, .fact-number{
    color: #424242;
}

/* dark03 */
.text-light-gray, .fact-name{
    color: #727272;
}
.bg-light{
    background-color: rgba(255, 144, 14, 0.1);
}
.btn-primary{
    background-color: #ff900e;
    color: #ffffff;
    padding: 20px 25px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
}
main{
    max-width: 1440px;
    margin: 0 auto;
}
main > section{
    margin-top: 130px;
}
/* hdfjhthtjytst */
.section-title, .fact-number{
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* header style */



/* navbar related style */
.navbar{
    justify-content: space-between;
    align-items: center;
}
.brand{
    font-weight: 700;
    font-size: 2.8rem;
}
.nav-item{
    list-style: none;
    margin-right: 30px;
}
.nav-link{
    text-decoration: none;
    font-weight: 500;
    color: ;
}
.navbar, .banner{
    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-weight: 700;
    font-size: 4rem;
}
.banner-description{
    font-size: 16px;
    line-height: 26px;
    max-width: 868px;
    color: #727272;
    /* border: 2px solid tomato; */
}
.banner-image{
   width: 100%; 
}

/* team and feature related style */
.teams{
    align-items: center;
}
.team-img-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.our-features{
    margin-left: 73px;
    max-width: 537px;
    /* border: 2px solid tomato; */
}
.our-features .feature-description{
    font-size: 16px;
    line-height: 26px;
    max-width: 542px;
}

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

/* features section related styles */
.features{
    gap: 146px;
}
#feature-section-title{
    border-left: 5px solid #ff900e;
    padding-left: 20px;
}
.feature-enjoy-description{
    max-width: 586px;
    font-size: 16px;
    line-height: 26px;
}
.feature-card{
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    max-width: 586px;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.feature-title{
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    
}


/* some facts related styles */
.fact-description{
    max-width: 540px;
    font-size: 16px;
    line-height: 26px;
    color: #727272;
    margin-bottom: 100px;
}
.facts-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* justify-content: space-between; */
    /* margin-left: 50px; */
}
.fact-card{
    border: 1px solid #ff900e;
    width: 240px;
    height: 240px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* justify-items: center; */
    /* padding: 66px 36px 59px 36px; */ 
}
.fact-number{
    margin-top: 10px;
    margin-bottom: 5px;
}
.fact-name{
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
}
/* sponsor related style */
.sponsor-info{
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
    margin-top: 180px;
}
.sponsor-companies{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    /* gap: 70px; */
}
.sponsor-companies img{
    filter: grayscale(100%);
}

/* responsive media query */
@media screen and (max-width: 576px) {
    .navbar,
    .nav-links, 
    .teams{
        flex-direction: column;
    }
    .team-img-container, 
    .facts-container,
    .sponsor-companies
    {
        grid-template-columns: repeat(1,1fr);
    }
    .our-features{
        margin-left: 20px;
    }
    .facts-container{
        justify-items: center;
        gap: 24px;
    }
    .sponsor-companies{
        justify-items: center;
        gap: 50px;
    }

}

/* medium device */
@media screen and (min-width: 576px) and (max-width: 992px) {
    .teams{
        flex-direction: column;
    }
    .our-features{
        /* margin-left: 50px; */
        margin: 50px auto;
    }
    .sponsor-companies, .facts-container{
        grid-template-columns: repeat(2,1fr);
        gap: 50px;
        justify-items: center;
        /* margin-left: 100px; */
    }
}