
@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;
}

/* common style */
.bg-light{
  background-color: rgba(255, 144, 14, 0.10);
}

.primary-button{

    background:rgb(255, 144, 14) ;
    color:white ;
    padding: 21px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
}

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

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

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


/* navbar style */
.navbar{
    display: flex;
    justify-content: space-between;
  
    margin: 0 auto;
    align-items: center;
}
.brand{
    font-size: 2.8rem;
    font-weight: 700;
}

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

ul li{
    list-style-type: none;
}

ul li a{
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    color: #727272;
}

.navbar, .banner{
    max-width: 1440px;
    margin: 0 auto;
}
/* banner styles */

.banner-contante{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}
.banner-title{
    font-size: 4rem;
    font-weight: 700;
}
.banner-description{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(114, 114, 114);
}

.banner-img{
    width: 100%;
}

/* frisf-section */

.teams{
    display: flex;
    align-items: center;
}
.teams-img-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.teams-title{
    margin-left: 80px;
    max-width: 530px;
}

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

}

.Quick-list{
    font-weight: 500;
    color: rgb(114, 114, 114);
}
.Features{
color: rgb(255, 144, 14);
}


/* features styles */
.features{
    display: flex;
    gap: 200px;
}
#features-border{
    border-left: 5px solid rgb(255, 144, 14);
    padding-left: 20px;
}

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

.features-architact img{
width: 100%;
}

#badge{
    font-size: 1.5rem;
    font-weight: 400;
    padding: 45px 42px;
    margin-left: -100px;
    margin-top: -100px;

}

#years{
font-size: 3.5rem;
font-weight: 700;
}

/* some facts styles */
.card-parent{
    display: flex;
    justify-content: center;
    gap: 80px;
}
    


.facts-title-container{
    width: 400px;
}
.facts-banner-title{
    font-size: 2.5rem;
    margin-bottom: 10px;

}
.facts-card{
    width: 180px;
    height: 180px;
    border: 2px solid rgb(255, 144, 14);
    border-radius: 8px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

/* Our Sponspors */



.our1{
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}

.our2{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-left: 50px;
    
}

.our2 img{
    filter: grayscale(100%);
}

/* footer styles */
.footer-style{
    height: 100px;
    margin: 100px auto;
    border-radius: 8px;
    text-align: center;
    padding-top: 50px;
}




/* responsive media query */

@media screen and (max-width: 676px) {

    .navbar, 
    .card-parent,
    .features,
    ul, 
    .teams{
        flex-direction: column;
    }
    .teams-img-container, 
    .our2{
        grid-template-columns: repeat(1, 1fr);
    }

    .our2, 
    .Some-Facts, 
    {
        justify-items: center;
        gap: 24px;
    }

    .teams-title{
        margin-left: 20px;
    }
    #badge{
        margin-top: 20px;
        margin-left: 20px;
    }
    
}


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

    .teams-title{
        margin-left: 20px;
    }
}