@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 styles */
.navbar,
.banner,
.features-container {
    max-width: 1440px;
    margin: 0 auto;

}

.brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-item {
    font-size: 1.2rem;
}

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

.display-flex {
    display: flex;
}

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

}

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

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

}

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

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

.btn-bg {
    background-color: #FF900E;
}

.text-btn {
    color: white;
    border-radius: 8px;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600px;
    margin-bottom: 50px;
    border: none;
}

/* banner styles */


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

}

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


}

.banner-img {
    max-width: 100%;
    margin-bottom: 45px;
}

/* main  styles */
/* feature list with images */
main {
    max-width: 1440px;
    margin: 0 auto;
}

.team-list-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.teams-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 85px;

}

.team {
    border-radius: 8px;
    max-width: 342px;
    height: 342px;

}

.feature-list {
    max-width: 537px;
    height: 304px;
    margin-left: 73px;

}

.list-title,
.feature-title,
.facts-title,
.sponsor-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 24px;

}

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

/* experience feature  */
.features-container {
    border: 2px solid blue;
    display: flex;
    margin-top: 130px;
    max-width: 1440px;
}

.feature-title {
    border-left: 5px solid rgba(255, 144, 14, 1);
    padding: 21px;
}


.features-types {
    max-width: 586px;
    border-radius: 8px;

}

.card {
    box-shadow: 10px 10px 10px 10px rgb(243, 242, 242);
    padding: 30px;
    border-radius: 8px;

}

.feature-card {
    max-width: 514px;
    height: 111px;

}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.card-des,
.fact-des,
.sponsor-des {
    font-size: 1rem;
}

.experience-btn {
    background-image: url("../images/architect.png");
    max-width: 800px;
    height: 1059px;

}

.year {
    background-color: #FF900E;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    padding: 46px;
}

.experience {
    font-size: 1.6rem;
    font-size: medium;

}

/* facts styles */
.facts-title {
    margin-top: 130px;
}

.facts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 124px;
    margin-top: 100px;
    margin-left: 50px;
}

.facts-card {
    border: 1px solid #FF900E;
    width: 241px;
    height: 241px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

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


}

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

}

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

/* sponsor styles */
.sponsor {
    text-align: center;
    margin-top: 180px;

}

/* sponsor-img styles */
.sponsor-img-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    filter: grayscale(100%);
    margin-top: 50px;
    margin-bottom: 130px;
}

/* footer styles */
.reserved {
    background-color: rgba(255, 244, 231, 1);
    border-radius: 8px;
    max-width: 1440px;
    margin-bottom: 216px;
    margin: 0 auto;
}

.reserved-des {
    text-align: center;
    font-size: 20px;
    padding: 39px 410px 37px 410px;
}

/* responsive media query */
@media screen and (max-width: 576px) {

    .navbar,
    .nav-links,
    .team-list-section {
        flex-direction: column;
    }

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

    .facts-container {
        justify-items: center;
    }

    .feature-list {
        margin-left: 30px;
    }

    .sponsor-img-container {
        gap: 30px;
        justify-items: center;

    }
}

/* medium sizes devices */
@media screen and (min-width: 576px) and (max-width: 992px) {
    .team-list-section {
        flex-direction: column;
    }

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

    .facts-container {
        justify-items: center;
    }

    .feature-list {
        margin-left: 30px;
    }

    .sponsor-img-container {
        gap: 30px;
        justify-items: center;

    }
}



.hide {
    display: none;
}