@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: 20px;
    font-style: normal;
}


/* Shared Styles */
.display-flex {
    display: flex;
}

.text-primaty {
    color: #FF900E;
}

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

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

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

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

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

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

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

/* header Styles */

/* navbar releted style */
.nav-var {
    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;
    color: dark;
}

.nav-var,
.banner {
    max-width: 1440px;
    margin: 0 auto
}

.nav-var,
.brand {
    font-weight: 700;
    font-size: 2.8rem;
}

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

}

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

.banner-image {
    width: 100%;
}

/* Team fiture releted style */
.teams {
    align-items: center;
}

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

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


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

/* features section releted styles */
.features {
    gap: 140px;
}

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

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

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

.fiture-card .text-light-gray {
    font-size: 16px;
}

#experience-badge {
    padding: 45px 42px;
    background-color: #FF900E;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    margin-left: -92px;
    margin-top: -77px;
}

#experience-year {
    font-size: 4rem;

}

.featured-architect img {
    width: 100%;

}

/* some fact releted desain */
.facts-containner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

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

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

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

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

/* Fact Description */
/* sponsors releted style */
.sposor-info {
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}

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

}

.sponsor-companys img {
    filter: grayscale(100%);
}

/* footer section */
footer {
    margin: 130px auto;
    background-color: #FFF4E7;
    max-width: 1440px;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

footer p {
    text-align: center;
}

/* Responcive media quary */
@media screen and (max-width: 576px) {

    .nav-var,
    .nav-link,
    .features,
    .teams {
        flex-direction: column;
    }

    .team-img-container,
    .facts-containner,
    .sponsor-companys {
        grid-template-columns: 1fr;
    }

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

    .sponsor-companys {
        justify-items: center;
        gap: 50px;
    }

    .team-fiture {
        margin-left: 20px;
    }

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

    .footer {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }
}

footer {
    margin: 40px 15px;
    padding: 25px 10px;
}

/* Medium Size device */
@media screen and (min-width: 576px) and (max-width: 992px) {

    .teams,
    .features {
        flex-direction: column;

    }

    .team-fiture {
        margin: 50px auto;
    }

    .sponsor-companys,
    .facts-containner {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        justify-items: center;
    }

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