/* font style */
@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: 500;
  font-style: normal;
}
/* shared style */
.display-flex{
    display: flex;
}
.primary-width{
     max-width: 1440px;
     margin: 0px auto;
}
.primary-description{
    font-size: 1rem;
    font-weight: 500;
}
.btn-primary{
    background-color: #FF900E;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    width: 180px;
    height: 64px;
    border-radius: 8px;
    border: none;
}
.title{
    font-size: 2.9rem;
    font-weight: bold;
}
.fact-number{
    font-size: 2.9rem;
    font-weight: 500;
    margin: 10px;
}
/* dark - o2 */
.text-gray{
    color: #424242;
}
/* dark - 01 */
.text-dark-light{
    color: #131313;
}
/* dark - 03 */
.text-dark-gray{
    color: #727272;
}

/* NAv bar style */
header{
   background-color: rgba(255, 144, 14, 0.1);
}
.nav-bar{
    justify-content: space-between;
    align-items: center;
}
.nav-links{
     list-style: none;
}
.nav-link{
    text-decoration: none;
    margin-right: 20px;
}
/* .nav-title{
    font-size: 2.9rem;
    font-weight: 700;
} */
.brand-content{
 max-width: 850px;
 margin: 0px auto;
 text-align: center;
 margin-bottom: 30px;
}
.brand-title{
    font-size: 4rem;
    font-weight: 700;
} 
.banner-image{
    width: 100%;
}

/* MAin part start */
main>section{
    margin-top: 130px;
}
.feature-image-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}
.our-feature-title{
       margin-left: 73px;
}
.our-features{
    align-items: center;
}
.our-feature-title{
    max-width: 530px;
}
.feature-title{
    margin-bottom: 32px;
}
.quick-list{
    font-weight: 500;
}
/* love and enjoy section */
.love-enjoy{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 130px;
}
#love-enjoy-border{
    border-left: 5px solid #FF900E;
    padding: 20px;
    
}
#love-enjoy-description{
    max-width: 586px;
}
.love-enjoy-right button{
     position: relative;
     top: -120px;
     left: -100px;
}
.love-enjoy-right img{
    width: 100%;
    height: 950px;
}
#love-enjoy-btn{
    width: 342px;
    padding: 46px 42px;
    color: white;
    background-color: #FF900E;
    border-radius: 8px;
    border: none;
}
#btn-title{
    font-size: 3rem;
    font-weight: 700;
}
#btn-title-1{
    font-size: 1.35rem;
    font-weight: 500;
}
.card{
    max-width: 586px;
    padding: 30px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    border-radius: 8px;
}

/* some facts */
.fact-description{
    max-width: 540px;
}
.facr-card{
    border: 1px solid #FF900E;
    border-radius: 8px;
    width: 241px;
    height: 241px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.fact-card-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.fact-description{
    font-size: 1.25rem;
    font-weight: 600;
}
/* sponsor-part */
.sponsor-content{
    margin: 0px auto;
    text-align: center;
}
.spondor-description{
    max-width: 542px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 500;
}
.sponsor-container{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    filter: grayscale(100%)
}
/* footer */
.footer{
    background-color: #FFF4E7;
    text-align: center;
    margin-top: 30px;
}
.footer-description{
    padding: 39px 0;
}
/* responsive design */
@media screen and (max-width:576px) {
    .nav-bar,
    .nav-links,
    .our-features{
        flex-direction: column;
    }
    .some-facts{
        margin-top: 20px;
      
    }
    .some-facts-title{
          margin-left: 50px;
    }
    .feature-image-container,.fact-card-container,.sponsor-container,.love-enjoy{
        grid-template-columns: 1fr;
    }
    .fact-card-container,.sponsor-container{
        
        justify-items: center;
        gap: 20px;
    }
    .our-feature-title{
        margin: 20px;
    }
    .love-enjoy-right button{
     position: relative;
     top: -120px;
     left: 0px;
}
}
@media screen and (min-width: 576px) and (max-width: 990px) {
    .our-features{
        flex-direction: column;
    }  
    .feature-image-container,.fact-card-container{
        grid-template-columns: repeat(2,1fr);
        gap: 50px;
    }
    .fact-card-container{
        
        justify-items: center;
        gap: 20px;
    }
    .sponsor-container{
        grid-template-columns: repeat(3,1fr);
        justify-items: center;
        row-gap: 30px;
    }
    .some-facts{
        margin-top: 20px;
      
    }
       .some-facts-title{
          margin: 0px auto;
          text-align: center;
    }
    .fact-description{
         margin: 0px auto;
        text-align: center;
        margin-bottom: 30px;
    }
    .fact-description {
        margin-top: 10px;
    }
    .some-facts-title{
          margin: 0px auto;
        
    }
}