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


.work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* shared styles */
.dark01{
    color: rgba(19, 19, 19, 1);
}

.dark02{
    color: rgba(66, 66, 66, 1);
}

.dark03{
    color: rgba(114, 114, 114, 1)
}

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

.display-flex{
    display: flex;
}

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

.btn-primary{
    font-weight: 600;
    background-color: rgba(255, 144, 14, 1);
    color: white;
    padding: 20px 25px;
    font-size: 1.25rem;
    border: none;
    border-radius: 10px;
}

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

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

body{
    margin: 0;
    padding: 0;
}

/* header styles */

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

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

.nav_item{
    list-style: none;
    margin-right: 30px;
}

.nav_link{
    text-decoration: none;
}

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

/* banner styles */

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

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

.banner-img{
    width: 100%;
}

/* team section design */
.teams{
    width: 100%;
    align-items: center;
}
.team-img-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.team-features{
    max-width: 530px;
    margin-left: 100px;
}


#quick-list{
    font-weight: 500;
}
#features{
    color: #FF900E;
}

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

.features{
    gap: 150px;
}

.feature-card{
    padding: 30px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.09);
    margin-bottom: 20px;
    border-radius: 10px;
}
.feature-card-title{
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 0px;
    margin-bottom: 0px;
}

#experirnce-badge{
    padding: 45px 42px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: -100px;
    margin-top: -100px;
}
#experience{
    font-size: 4rem;
    font-weight: 700;
}

/* some-facts section design */

.facts-containers{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fact{
    border: 1px solid #FF900E;
    width: 240px;
    height: 240px;
    border-radius: 10px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.fact-number{
    font-size: 2.8rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 10px;
}
.fact-name{
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 10px;
}
.fact-description{
    max-width: 540px;
}

/* our sponsor section design */
.sponsor-info{
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}

.sponsors-company{
    display: grid;
    grid-template-columns: repeat(5,1fr);
}

.sponsors-company img{
    filter: grayscale(100%);
}

/* footer design */
.footer{
    padding: 10px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
}

.footer p{
    font-size: 1.25rem;
}

/* small size device */
@media screen and (max-width:576px){
    .navbar, 
    .nav_links,
    .teams,
    .features
    {
        flex-direction: column;
    }

    .team-img-container, 
    .facts-containers,
    .sponsors-company{
        grid-template-columns: repeat(1,1fr);
    }
    .featured-architect img{
        width: 100%;
    }
    .features{
        padding-left: 10px;
        padding-right: 10px;
        width: calc(100% - 20px);
    }
    .facts-containers{
        justify-items: center;
        gap: 24px;
    }
    .some-facts{
        text-align: center;
    }
    .team-features{
        margin-left: 10px; 
    }
    .sponsors-company{
        justify-items: center;
        gap: 50px;
    }
    #experirnce-badge{
        margin-top: 20px;
        margin-left: 20px;
    }
}

/* medium size device */
@media screen and (min-width:576px) and (max-width:992px){
    .teams,
    .features
    {
        flex-direction: column;
    }
    .team-features{
        margin: 0 auto;
    }
    .btn-primary-res{
        margin-left: 180px ;
    }
    .featured-architect{
        margin-left: 105px;
    }
    .features{
        padding-left: 10px;
        padding-right: 10px;
        width: calc(100% - 20px);
    }
    .some-facts{
        margin-top: 80px;
    }
    .facts-containers{
        grid-template-columns: repeat(2,1fr);
        justify-items: center;
        gap: 24px;
        margin-top: 20px;
    }
    .section-title-res, .fact-description{
        margin-left: 105px;
    }
    .our-sponsors{
        margin-top: 80px;
    }
    .sponsors-company{
        grid-template-columns: repeat(3,1fr);
        gap: 50px;
        margin-left: 100px;
    }
}