@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 styles */
.display-flex {
    display: flex;
}

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

.dark-1 {
    color: #131313;
}

.dark-2 {
    color: #424242;
}

.dark-3 {
    color: #727272;
}

.orang {
    color: #FF900E;
}

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

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

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

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

.section-description {
    font-weight: 400;
    font-size: 1rem;
}


/* nav styles */

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

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

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

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

}

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

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

.banner-title {
    font-size: 4rem;
    font-weight: 700;
}

.banner-discripsion {
    font-size: 1rem;
    font-weight: 400;
}

.banner-img {
    width: 100%;
}

/* your features section styles */
.teams {
    align-items: center;
}

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

.team-content {
    max-width: 530px;
    margin-left: 130px;
}

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

/* feature section styles */
.features{
    /* align-items: center; */
    gap: 140px;
}
#feature-section-title{
    border-left: 5px solid #FF900E;
    padding-left: 21px;
}
.feature-card{
    padding: 30px;
  box-shadow: 0 4px 30px 0  rgba(0, 0, 0, 0.06); 
  margin-bottom: 20px;
  border-radius: 8px;
}
.feature-card-title{
    margin-top: 0px;
    margin-bottom: 0px;
font-size: 1.25rem;
font-weight: 600;
}
.featured-architect img{
    width: 100%;
}
#experience-year{
    font-size: 4rem;
    font-weight: 700;
}
#experience-badge{
font-size: 1.5rem;
font-weight: 500;
    padding: 46px 42px;
    margin-left: -100px;
    margin-top: -100px;
}
/* facts styles */
.facts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fact-card {
    border-radius: 8px;
    width: 240px;
    height: 240px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #FF900E;
}

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

.fact-number {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 10px 0 5px 0;
}

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

/* sponspors section style */
.sponsors-contant {
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}

.sponspors-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.sponspors-container img {
    filter: grayscale(100%);
}
footer{
    max-width: 1140px;
    margin: 130px auto;
    border-radius: 8px;
}
/* footer styles */
.footer-title{
font-size: 1.25rem;
font-weight: 400;
text-align: center;
padding: 38px 0 38px 0 ;

}

/* responsive layout for mobile device */
@media screen and (max-width:576px) {

    .navbar,
    .banner,
    .features,
    .teams {
        flex-direction: column;
    }

    .team-img-container,
    .facts-container,
    .sponspors-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .facts-container {
        justify-items: center;
        gap: 24px;
    }

    .sponspors-container {
        justify-items: center;
        gap: 50px;
    }

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

/* medium device responsive */
@media screen and (min-width:576px) and (max-width:992px) {
    .teams, 
    .features {
        flex-direction: column;
    }

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

    .team-content {
        margin: 50px auto;
    }
        #experience-badge{
        margin-top: 20px;
        margin-left: 20px;
    }
}