/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Poppins:wght@500&family=Work+Sans&display=swap');


/* coomon styles or utilities */
body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
}

.primary-button {
    color: white;
    font-size: 20px;
    font-weight: 500;
    background-color: #FF900E;
    padding: 15px 35px;
    border: 1px solid #FF900E;
    border-radius: 5px;
}

.primary-button:hover {
    color: #ff900e;
    background-color: #FFF4E7;
    border: 1px solid #FF900E;
}
hr {
    color: #f5f5f5;
    padding-top: 30px;
}


/* navbar styles */
.header {
    background-color: #FFF4E7;
    padding: 0 120px 0 120px;
}
nav {
    display: flex;
    justify-content: space-between;
}

.nav-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 53px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav li {
    list-style: none;
    margin-right: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

nav li:hover {
    font-weight: 600;
}

/* hero section styles */
.banner {
    text-align: center;
}

.banner-title {
    color: #131313;
    font-size: 65px;
    font-weight: 700;
    line-height: 75px;
}

.banner-description {
    color: #727272;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    padding-bottom: 30px;
}

.banner-image {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 1440px;
    height: 700px;
}

/* Features section styles  */

.features {
    display: flex;
    align-items: center;
    padding: 130px 300px;
    gap: 70px;
}

.features-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 60px;
}

.features-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.features-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 30px;
    color: #727272;
}

/* second features section styles */
.second-features-block {
    box-shadow: 1px 1px 5px 5px #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.second-features {
    display: flex;
    align-items: center;
    padding: 100px 300px 0 300px;
    gap: 130px;
}
.second-features-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 60px;
    border-left: 4px solid #FF900E;
    padding-left: 15px;
}

.block-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.second-features-description {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
}


.fency-button {
    text-align: center;
    margin-top: -150px;
} 

.button-2 {
    color: white;
    font-size: 20px;
    font-weight: 500;
    background-color: #FF900E;
    padding: 15px 35px;
    border: 1px solid #FF900E;
    border-radius: 5px;
}

.button-2:hover {
    color: #ff900e;
    background-color: #FFF4E7;
    border: 1px solid #FF900E;
}


/* Facts styles */

.facts {
    align-items: center;
    padding: 130px 300px;
    gap: 70px;
} 

.facts-box {
    display: flex;
    gap: 120px;
}

.facts-content {
    text-align: center;
    border: 1px solid #FF900E;
    border-radius: 5px;
    padding: 15px 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.facts-content:hover {
    transform: scale(0.8);
}

.facts-number {
    font-size: 30px;
    font-weight: 600;
}

.facts-title {
    font-size: 40px;
    font-weight: 700;
    padding: 0;
}

.facts-description {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
}

/* Sponsors styles */
.sponsors {
    align-items: center;
    padding: 70px 300px;
}

.sponsor-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.sponsor-sedcription {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    text-align: center;
    padding-bottom: 70px;
}

.image-sponsor {
    width: 150px;
    filter: grayscale(100%);
    padding-right: 100px;
}

/* footer and extra section */
.footer {
    background-color: #FFF4E7;
    align-content: start;
    padding: 80px 300px 0 300px;
    margin-top: 50px;
    gap: 70px;
    display: flex;
    justify-content: space-between;
}

.footer-title {
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.footer-content-title {
    font-size: 20px;
    font-weight: 700;
}

.footer-content ul {
    color: black;
    font-size: 16px;
    font-weight: 700;
}

.footer-content li {
    list-style: none;
    margin-left: -40px;
    padding-bottom: 10px;
}

/* copyright section */
.copyright {
    background-color: #FFF4E7;
    text-align: center;
    padding-bottom: 20px;

}


/* Media Queries */

/* Mobile Device */
@media only screen and (max-width:688px) {
    
    .header {
        padding: 0;
    }
    nav {
        text-align: center;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid grey;
    }
    nav ul {
        display: flex;
        justify-content: space-around;
    }
    nav li {
        font-size: 16px;
        margin-right: 10px;
    }
    .banner {
        padding: 20px;
    }
    
    .banner-title {
        font-size: 45px;
        font-weight: 700;
        line-height: 50px;
    }

    .banner-image {
        width: 100%;
        height: 400px;
    }

    .features {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }
    .features-images {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 20px 0;
    }
    
    .second-features {
        display: flex;
        flex-direction: column-reverse;
        padding: 0 20px;
    }

    .second-features-image img{
        width: 100%;
        padding-top: 50px;
    
    }

    .fency-button {
        text-align: center;
        padding-top: 20px;
        margin-top: 0;
    } 
    
    .second-features-title {
        border-left: 4px solid #FF900E;
    }

    .facts {
        align-items: center;
        padding: 20px 20px;
    }

    .facts-box {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .sponsors {
        align-items: center;
        padding: 0 20px;
    }
    .image-sponsor {
        width: 80px;
        filter: grayscale(100%);
    }
    .footer {
        background-color: #FFF4E7;
        align-content: start;
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }
}
















