
@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;
}
.navbar{
    justify-content: space-between;
    align-items: center;
}
main{
    max-width: 1440px;
    margin: 0 auto;
}
main > section{
    margin-top: 130px;
}
.brand{
    font-size: 3rem;
    font-weight: 700;
}
.bg-primary{
    background-color: rgba(246, 138, 15, 0.1);
}
.display-flex{
    display: flex;
}
.nav-item{
    list-style: none;
    margin-right: 30px;
}
.nav-link{
    text-decoration: none;
    font-weight: 500;
}
.text-gray{
    color: #424242;
}
.text-light-gray{
    color: #727272;
}
.text-primary{
    color: rgba(255, 144, 14, 1);
}
.navbar, .banner{
    max-width: 1440px;
    margin: 0 auto;
    
}
.banner-content{
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.banner-title{
    font-size: 4rem;
    font-weight: 700;
}
.btn-primary{
    background-color: rgba(255, 144, 14, 1);
    color: white;
    padding: 20px 25px ;
    border: none;
    border-radius: 10px;
    font-size: 1.25em;
}
.banner-img{
    width: 100%;
}
.teams{
    align-items: center;
}
.team-img-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.our-features{
    margin-left: 100px;
    max-width: 530px;
}
.feature-title{
    font-size: 2.5rem;
}
#quick-list{
  font-weight: 500;
}
.facts-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.fact-card{
    border: 1px solid #FF900E;
    width: 248px;
    height: 248px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.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-decription{
    max-width: 540px;
}
.sponser-info{
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}
.sponser-company{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.sponser-company img{
    filter: grayscale(100%);
}
.features{
    gap: 100px;
}
#border{
    border-left: 5px solid #FF900E;
    padding-left: 20px;
}
.feature-card{
        padding: 30px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}
.feature-card .feature-title{
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0;
}
#badge{
    padding: 45px 42px;
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: -100px;
    margin-top: -100px
}
#year{
    font-size: 4rem;
    font-weight: 700;
}
.architect img{
    width: 100%;
}
@media screen and (max-width: 576px) {
    .nav-links, .navbar, 
    .teams,.features{
        flex-direction: column;
    }
    .team-img-container, 
    .facts-container,
     .sponser-company
    {
        grid-template-columns: repeat(1,1fr);
    }
    .facts-container, .sponser-company{
        justify-items: center;
        gap: 24px;
    }
    .our-features{
        margin-left: 20px;
    }
    #badge{
        margin-top: 20px;
        margin-left: 20px;
    }
}
@media screen and (min-width: 577px) and (max-width: 992px) {
    .teams{
       flex-direction: column;  
    }
    .our-features{
        margin-left: 50px;
    }
    .sponser-company, .facts-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        justify-items: center;
    }
      #badge{
        margin-top: 20px;
        margin-left: 20px;
    }
    
}