@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{
    display: flex;
  }

.text-primary{
    color:rgba(255, 144, 14, 1);
}

  /* Dark-02 */
.text-gray{
    color:#424242 ;
    }

 /* Dark-03 */
 .text-light-gray{
    color:#727272 ;
    }

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

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

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

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

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

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

  .navbar{
    justify-content: space-between;
    align-items: center;
  }
  .brand{
    font-weight: 700;
    font-size: 3rem;
  }

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

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

 .banner-title{
  font-size: 4rem; 
 }
 .banner-image{
    width: 100%;
 }

/* man section */
.teams{
    align-items: center;
}

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

.our-feature{
    margin-left: 73px;
    max-width: 530px;
}

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

/* Feature related style */
.feature{
    gap: 140px;
}

#feature-section-title{
    border-left: 5px solid #FF900E;
    padding-left: 20px;
}

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

.feature-card .feature-title{
    font-weight: 600;
    font-size: 1.25rem;
}
#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;

}
.fetch-img{
    width: 100%;
}

/* some fact styles */
.facts-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.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;
}
.fact-card{
    border: 1px solid #FF900E;
    width: 240px;
    height: 240px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Sponsor reletad info */
.sponsors-info{
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}
.sponsor-companis{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.sponsor-companis img{
    filter: grayscale(100%);
}

/* footer */
.footer-text{
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    background-color: rgba(255, 244, 231, 1);
    padding: 50px;
    margin-top: 130px;
    margin-bottom: 130px;
}

/* Responsive */
@media screen and (max-width: 576px) {
    .navbar,
     .nav-links,
     .feature,
     .teams{
        flex-direction: column;
    }

    .team-img-container, 
    .facts-container,
    .sponsor-companis{
        grid-template-columns: 1fr;
    }
    .facts-container,{
        gap: 24px;
    }
    .some-facts{
        justify-items: center;
    }
    .sponsor-companis{
        justify-items: center;
        gap: 60px;
    }
    .our-feature{
        margin-left: 20px;
    }
    main{
        width: 440px;
    }
    #experience-badge{
        margin-top: 20px;
        margin-left: 20px;
    }
    .fetch-img{
        width: 440px;
    }
}

@media screen and (min-width: 576px) and (max-width: 990px) {
    .teams, .feature{
        flex-direction: column;
    } 
    .our-feature{
        margin: 50px auto;
    }
    main{
        width: 440px;
        
    }
    .facts-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;  
    }
    .sponsor-companis{
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    #experience-badge{
        margin-top: 20px;
        margin-left: 20px;
    }

}