 *{
    margin: 0;
}
.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;
}

.text-gray{
    color: #424242;
}
.text-light-gray{
    color: #727272;
    padding-bottom: 20px;
}

.bg-light{
    background-color: rgba(255, 144, 14, 0.1);
    padding-top: 30px;
    padding-bottom: 30px;
}

.btn-primary{
    background-color: #FF900E;
    color: white;
    padding: 13px 25px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;


}

.section-title{
    font-size: 2.8rem;
    font-weight:700 ;
    padding-bottom: 10px;
}

.text-primary{
    color: #FF900E;
}

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

main > section{
    margin-top: 130px;
}

/* header styles */


/* navbar related styles */

.brand{
    font-weight: 700;
    font-size: 3rem;
}

.navbar{
    justify-content: space-between;
    align-items: center;
    
}

.nav-item{
    list-style: none;
    margin-right: 30px;
    
}

.nav-link{
    text-decoration: none;
    font-weight: 500px;
}

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

/* banner related style */

.banner-content{
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.banner-title{
    font-size: 4rem;
    font-weight: 700;
    line-height: 1em;
    padding-bottom: 10px;
}

.banner-img{
    width: 100%;
}

.banner-description{
    padding-bottom: 20px;
}


/* Team and feature */
.teams{
    align-items: center;
}

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

.our-features{
    margin-left:76px ;
    max-width:530px ;
}
.features{
    gap: 140px;
}


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

/* features section */
#features-section-title{
    border-left:5px solid #FF900E ;
    padding-left: 20px;
    /* padding-bottom: 50px; */
    margin-bottom: 10px;


}

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

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

#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: 700;
}

.feature-architec img{
    width: 100%;

}

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

.fact-card{
    border: 1px solid #FF900E;
    width: 240px;
    height: 240px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* justify-content: space-between; */
    /* align-items: center; */
    margin: 0 auto;
}
.fact-number{
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 10px;
}

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

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

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

.sponsor-companies{
    display: grid;
    grid-template-columns: repeat(5, 1fr);

}

.sponsor-companies img{
    filter: grayscale(100%);
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 130px;
}


/* footer */

.footer-container{
    width: 1440px;
    margin: 0 auto ;
    margin-bottom: 150px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #FFF4E7;
    /* border: 1px solid black; */
}

.footer-text{
    font-size: 20px;
    color: #424242;
    font-weight: 500;
    /* align-items: center; */
    /* margin: 0 auto; */
    padding-top: 38px;
    padding-bottom: 38px ;
    text-align: center;
}



/* responsive media query */

@media screen and (max-width:576px){
    .navbar, 
    .nav-links,
    .teams, 
    .features{
        flex-direction: column;

    }
    .team-img-container, 
    .facts-container, 
    .sponsor-companies{
        grid-template-columns: repeat(1, 1fr);
    }
.facts-container{
        justify-items: center;
        gap: 24px;
    }

.sponsor-companies{
        justify-items: center;
        gap: 50px;
    }
.our-features{
        margin-left: 20px;
    }
    #experience-badge{
        margin-top: 20px;
        margin-left: 20px;
    }
}

/* medium device*/

@media screen and (min-width:576px) and (max-width:992px) {
    .teams, .features{
       flex-direction: column; 
    }
    .our-features {
        margin: 50px auto ;
        
    }

    .sponsor-companies, .facts-container {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 50px;
    }

    #experience-badge{
        margin-top: 20px;
        margin-left: 20px;
    }
}