* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: "Work Sans", sans-serif;
}

header {
    background: #FF900E10;
    padding: 50px 0;
}

a {
    text-decoration: none;
}

.btn {
    background: #FF900E;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    padding: 20px 26px;
    color: white;
    cursor: pointer;
    display: inline-block;
}

/* Header */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 45px;
    font-weight: 700;
    color: #131313;
}

ul li {
    list-style-type: none;
    color: #424242;
}

ul {
    display: flex;
    gap: 50px;
}

li a {
    color: #424242;
}

/* banner */
#banner {
    background: #FF900E10;
    padding: 45px 0;
}

.banner_container {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.banner_container h1 {
    font-size: 64px;
    font-weight: 700;
    margin-top: 50px;
}

.banner_container p {
    font-size: 16px;
    color: #727272;
    margin: 32px 0;
}

.banner_image img {
    width: 100%;
    margin-top: 50px;
}

/* Teams */
.teams_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 73px;
    margin-top: 85px;
}

.team_content,
.team_image {
    width: 50%;
}

.team_image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.team_image div img {
    width: 100%;
}

.team_content h3 {
    font-size: 45px;
    font-weight: 700;
    color: #131313;
    max-width: 400px;
}

.team_content span:first-child {
    color: #727272;
    font-weight: 500;
}

.team_content span:last-child {
    color: #FF900E;
}

.team_content p {
    color: #727272;
    margin: 24px 0;
    padding-right: 150px;
}

/* feature_main */
.feature_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 130px;
    gap: 145px;
}

.feature_image,
.feature_content {
    width: 50%;
}

.feature_image {
    position: relative;
}

.exprincceyr {
    background: #FF900E;
    padding: 42px;
    border-radius: 8px;
    text-align: center;
    color: white;
    position: absolute;
    bottom: -100px;
    left: -100px;
}

.exprincceyr h3 {
    font-size: 65px;
    font-weight: bold;
}

.exprincceyr p {
    font-size: 25px;
    font-weight: 500;
}

.feature_content h2 {
    font-size: 45px;
    font-weight: 700;
    border-left: 5px solid #FF900E;
    padding-left: 20px;
    max-width: 430px;
}

.feature_content p {
    color: #727272;
    margin: 24px 0;
}

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

.feature_card_item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #131313;
}

.feature_card_item p {
    font-size: 16px;
    font-weight: 400;
    color: #727272;
    margin-top: 10px;
    margin-bottom: 0;
}

.feature_card_item:last-child {
    margin-bottom: 0;
}

.feature_image img {
    width: 100%;
}

/* facts_head */
.facts_head {
    margin-top: 130px;
}

.facts_head h3 {
    font-size: 45px;
    font-weight: 700;
    color: #131313;
}

.facts_head p {
    color: #727272;
    margin-top: 24px;
}

.facts_card_main {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

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

.facts_card h4 {
    font-size: 45px;
    font-weight: 600;
    color: #424242;
}

.facts_card p {
    font-size: 20px;
    font-weight: 600;
    color: #727272;
}

/* Our Sponspors */
.sponsor_main {
    margin-top: 130px;
    text-align: center;
}

.sponsor_main h3 {
    font-size: 45px;
    font-weight: 700;
    color: #131313;
}

.sponsor_main p {
    color: #727272;
    max-width: 540px;
    margin: 24px auto;
}

.sponsor_card_head {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    filter: grayscale(100%);
    margin-top: 50px;
    margin-bottom: 130px;
}

footer p {
    text-align: center;
    background: #FFF4E7;
    padding: 30px;
    color: #424242;
}