    *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.to-top{
    position: fixed;
    right: 1%;
    bottom: 5%;
    background-color: #895051;
    width: 40px;
    height: 35px;
    border-radius: 4px;
    display: none;
    pointer-events: none;
    transition: all 0.1 ease-in-out;
  }
  
  @media only screen and (max-width:1200px){
    .to-top{
      width: 35px;
      height: 30px;
    }
  
    
  }
  
  .to-top.active20{
    pointer-events: auto;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .to-top i{
    font-size: 20px;
    color: #ffffff;
  }
  
  @media only screen and (max-width:1200px){
    .to-top i{
      font-size: 15px;
     
    }
  }


.heading{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 60px;
    background-color: #895051;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    
  
}

@media(max-width:1200px){
    .heading{
       justify-content: space-between;
       
        
    }
}

.logo{
    width: 20%;
    height: 59.6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px; 
}

@media(max-width:1200px){
    .logo{
        width: 150px;
    }
    .logo h1{
        font-size: 20px;
    }
}

.logo h1 a{
    color: #ffff;
    font-size: 22px;
}


.navlist{
    width: 80%;
    height: 59.6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
}

@media(max-width:1200px){
    .navlist{
        padding-top: 100px;
        flex-direction: column;
        height: 100vh;
        background-color: #895051;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        transition: all 0.2s ease-in-out;
       
    }
    .navlist.active{
        right: 0;
    }
}

.navlist li{
    list-style: none;
    padding:20px ;
}

.navlist li a{
    text-decoration: none;
    color: #ffff;
    font-weight: bold;
    font-size: 13px;
    padding-right: 5px;
}

.navlist li i{
    color: #ffffff;
    cursor: pointer;
}


#btn{
    display: none;
}

@media(max-width:1200px){
  #btn{
    display: block;
    color: #ffff;
    font-size: 25px;
    cursor: pointer;
    padding-right: 24px;
  }
}

#cros{
    display: none;
}

@media(max-width:1200px){
    #cros{
        display: block;
        position: absolute;
        right: 13%;
        top: 3%;
        cursor: pointer;
        font-size: 25px;
        color: #ffff;
    }
    
}


.slide1{
    background-image: url("https://img.freepik.com/premium-photo/cropped-shot-bowl-full-flour-table-created-with-generative-ai_419341-5233.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
    background-attachment: fixed;
  
}

@media(max-width:1200px){
    .slide1{
        height: 70vh;
    }
}

.slide2{
    background-image: url("https://img.freepik.com/premium-photo/organic-flour-heap-rustic-wooden-bowl-generated-by-ai_24640-84486.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
    background-attachment: fixed;
   
}

@media(max-width:1200px){
    .slide2{
        height: 70vh;
    }
}


.slide3{
    background-image: url("https://img.freepik.com/premium-photo/grain-sprinkled-flour-sits-table-bowl-wheat-bowl-oats_705708-17079.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
    background-attachment: fixed;
  
}

@media(max-width:1200px){
    .slide3{
        height: 70vh;
    }
}


.mySlides {
    display:none;
}

.btn1{
    position: absolute;
    top: 88.9%;
    left: 88%;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    background-color: #895051;
    border: none;
    outline: none;
    cursor: pointer;
    scroll-behavior: smooth;
    transition: all 1s ease-in-out;
    
}

.btn1:hover{
    background-color: black;
}

@media(max-width:1200px){
    .btn1{
        width: 50px;
        height: 40px;
        top: 70%;
        left: 64%;
    }

   
}

.btn2{
    position: absolute;
    right: 0.5%;
    bottom: 3%;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    background-color: #895051;
    border: none;
    outline: none;
    cursor: pointer;
    scroll-behavior: smooth;
    transition: all 1s ease-in-out;
   
}

.btn2:hover{
    background-color: black;
   
}

@media(max-width:1200px){
    .btn2{
        width: 50px;
        height: 40px;
        bottom: 45%;
        right: 9%;
        top: 69.9%;
    }
}

.btn1, .btn2 i{
    color: #ffff;
    font-size: 20px;
}

@media(max-width:1200px){
    .btn1, .btn2 i{
        font-size: 12px;
    }
}

.slide-container{
    width: 100%;
    height: 90vh;
    background-color: rgba(0, 0, 0, 0.559);
    display: flex;
    justify-content: flex-start;
    align-items: center;
   
}

@media(max-width:1200px){
    .slide-container{
        height: 70vh;
    }
}

.slide-text{
    width: 62%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
    padding-left: 200px;
}

@media(max-width:1200px){
    .slide-text{
      
        padding: 10px; 
        width: 90%;
        height: 30vh;
    }
}

.slide-text h1{
    color: #ffff;
    font-weight: bold;
    font-size: 70px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


@media(max-width:1200px){
    .slide-text h1{
        font-size: 35px;
       
    }
}



 .bg {
    background-color: #ffffff5c;
    background-size: cover;
    -webkit-background-size: cover;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
  } 

  @media(max-width:1200px){
    .bg{
        height: 180vh;
        
    }
  }

  .bg h1{
    font-size: 40px;
    margin-top: 95px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.650);
  }


  .service-container{
    width: 80%;
    height: 400px;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  @media(max-width:1200px){
    .service-container{
        flex-direction: column;
      
        height: 170vh;
    }
  }

 
  .service-container1{
    width: 300px;
    height: 310px;
    border: 0.01px solid rgba(0, 0, 0, 0.245);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px;
    border-radius: 3px;
  }

  .service-container1 i{
    font-size: 37px;
    padding-bottom: 15px;
    color: #895051ca;
  }

  .service-container1 h4{
    padding-bottom: 10px;
  }

  .service-container1 p{
    padding-bottom: 15px;
    color: rgba(0, 0, 0, 0.604);
    line-height: 25px;
  }

  .service-container1 a i{
    font-size: 25px;
  }

  .horizontal-line{
   width: 100%;
   height: 1px;
   padding-bottom: 15px;
   display: flex;
   justify-content: center;
   align-items: center;
  }

  .horizontal{
    border: 2px solid #895051b3;
    width: 30%;
   
  }

  .about-header{
    min-height: 75vh;
    width: 100%;
    position: relative;
    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  
  }

  @media(max-width:1200px){
    .about-header{
   
        flex-direction: column;
        min-height: 120vh;
    }
  }

  svg{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    
  }

  @media(max-width:1200px){
    svg{
        height: 31vh;
        top: 80%;
    }
  }

 
  .about-container{
    width: 45%;
    height: 400px;
  
  }

  @media(max-width:1200px){
    .about-container{
        width: 90%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 300px;
    }
  }

  .about-container img{
    object-fit: cover;
    width: 100%;
    height: 399px;
    
  }  

  @media(max-width:1200px){
    .about-container img{
        height: 260px;
        margin-right: 70px;
    }
  }

  .about-container1{
    width: 40%;
    height: 400px;
    margin: 60px;
   
  }

  @media(max-width:1200px){
    .about-container1{
        width: 85%;
        height: 450px;
        margin: 0;
    }
  }

  .about-container1 h3{
    font-family: cursive;
    color: #895051;
    font-size: 22px;
    padding-top: 39px;
    padding-left: 10px;
  }

  .about-container1 h1{
    font-size: 40px;
    color: rgba(0, 0, 0, 0.805);
    padding: 10px;
  }
  .about-container1 p{
    font-size: 20px;
    color: #383535a5;
    padding: 10px;
  }

  .about-container1 button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 25px;
  }

  .about-container1 button i{
    font-size: 20px;
    color: #895051;
  }



  .wave-header1{
    min-height: 155vh;
    width: 100%;
    position: relative;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.050);

  }

  @media(max-width:1200px){
    .wave-header1{
        min-height: 270vh;
    }
  }

  .wave-header1 h1{
    margin-top: 20px;
    margin-bottom: 85px;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.650);
  }


  @media(max-width:1200px){
    .wave-header1 h1{
        margin-top: 80px;
    }
  }


  .perk-container{
    width: 87%;
    height: 135vh;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  
  @media(max-width:1200px){
    .perk-container{
        height: 260vh;
    }
  }

  .perks-container{
    width: 450px;
    height: 280px;
    border-radius: 3px;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
   
  }

  .perks-container img{
    width: 100%;
    object-fit: cover;
    height: 279px;
    border-radius: 6px;
  }

  .perks-container1{
    width: 400px;
    height: 150px;
    position: absolute;
    top: 75%;
    background-color: #895051;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 3px;
    text-align: center;
  }

  @media(max-width:1200px){
    .perks-container1{
        width: 300px;
        height: 160px;
    }
  }

  .perks-container1 h4{
    font-size: 18px;
    color: #ffffff;
  }

  .perks-container1 p{
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    color: #ffffff;
  }

  .perks-container1 a{
    padding: 5px 5px;
    background-color: #ffffff;
    color: #895051;
    font-size: 13px;
    border-radius: 2px;
  }

  

  .wave-section{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #895051ad;
    z-index: -1;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
  }

  @media(max-width:1200px){
    .wave-section{
        flex-direction: column-reverse;
        height: 135vh;
        justify-content: space-around;
        align-items: center;
    }
  }

  
.making-container1{
    width: 54%;
    height: 550px;
    z-index: 1;
    margin-top: 40px;
    padding: 45px;
    letter-spacing: 1.1px;
    
}

@media(max-width:1200px){
    .making-container1{
        width: 85%;
        height: 400px;
        padding: 0;
    }
}

.making-container1 h1{
    font-size: 60px;
    padding-bottom: 30px;
    padding-top: 60px;
    color: rgba(0, 0, 0, 0.700);
}

@media(max-width:1200px){
    .making-container1 h1{
        font-size: 30px;
        padding-bottom: 20px;
        padding-top: 0;
    }
}

.making-container1 h5{
    font-size:18px;
    line-height: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgba(0, 0, 0, 0.780);
}

@media(max-width:1200px){
    .making-container1 h5{
        font-size: 15px;
        line-height: 20px;
    }
}

.making-container2{
    width: 40%;
    height: 550px;
    z-index: 1;
    margin-top: 40px;
}

@media(max-width:1200px){
    .making-container2{
        width: 85%;
        height: 350px;
    }
}

.making-container2 img{
    width: 100%;
    object-fit: cover;
    height: 548px;
    border-radius: 10px;
}

@media(max-width:1200px){
    .making-container2 img{
        height: 348px;
    }
}


  .wave-section .wave{
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100px;
   background: url(Images/wave.png);
   background-size: 1000px 100px;
   z-index: -1;
  }

  .wave-section .wave.wave1{
        animation: animate 30s linear infinite;
        z-index: 1000;
        opacity: 1;
        animation-delay: 0s;
        bottom: 0;
        z-index: -1;
  }

  @keyframes animate{
    0%{
        background-position-x: 0;
    }

    100%{
        background-position-x: 1000px;
    }
  }

  .wave-section .wave.wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
    z-index: -1;
}

@keyframes animate2{
0%{
    background-position-x: 0;
}

100%{
    background-position-x: -1000px;
}
}

.wave-section .wave.wave3{
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
    z-index: -1;
}

.wave-section .wave.wave4{
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -2s;
    bottom: 20px;
    z-index: -1;
}



.team-container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #808080;
}

@media(max-width:1200px){
    .team-container{
        height: 170vh;
    }
}

.team-container h1{
    font-size: 40px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.650);
}

@media(max-width:1200px){
    .team-container h1{
        font-size: 30px;
        margin-top: -30px;
        margin-bottom: 20px;
    }
}

.team-container p{
    margin: 10px;
    text-align: center;
}

@media(max-width:1200px){
    .team-container p{
        font-size: 14px;
    }
}

.team-container0{
    width: 80%;
    height: 60vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

@media(max-width:1200px){
    .team-container0{
        flex-direction: column;
        height: 160vh;
        padding-top: 0;
        margin-top: 60px;
    }
}

.team-container1{
    width: 250px;
    height: 320px;
    background-color: #895051d3;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
}

.team-container2{
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-color: #808080;
}

.team-container2 img{
    width: 100%;
    height: 199px;
    border-radius: 100px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.team-container2 img:hover {
    border-radius: 10px;
}

.team-container1 h4{
    color: #ffffff;
    font-size: 14px;
}

.team-container1 p{
    color: #ffffff;
    font-size: 12px;
}



.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #808080;
   
    
}

.contact-container h1{
    font-size: 40px;
    color: rgba(0, 0, 0, 0.650);
}

@media(max-width:1200px){
    .contact-container h1{
        font-size: 30px;
    }
}


.contact-container0{
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  height: 54vh;
  margin-top: 75px;

}

@media(max-width:1200px){
    .contact-container0{
        height: 110vh;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-top: 60px;
    }
}

.contact-container1{
    width: 55%;
    height: 52vh;
    
}

@media(max-width:1200px){
    .contact-container1{
        width: 100%;
        height: 45vh;
        margin-top: 0;
        padding-top: 0;
    }
}

.contact-container1 form{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.contact-container1 input{
    width: 700px;
    height: 50px;
    padding: 10px;
}

@media(max-width:1200px){
    .contact-container1 input{
        width: 300px;
        height: 35px;
    }
}

.contact-container1 textarea{
    width: 700px;
    height: 100px;
    padding: 10px;
}

@media(max-width:1200px){
    .contact-container1 textarea{
        width: 300px;
        height: 80px;
    }
}

.contact-container1 .submit{
    width: 700px;
    height: 40px;
    cursor: pointer;
    background-color: #895051;
    outline: none;
    border: none;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
}

@media(max-width:1200px){
    .contact-container1 .submit{
        width: 300px;
        height: 30px;
    }
}

.contact-container2{
    width: 40%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #808080;
  
}

@media(max-width:1200px){
    .contact-container2{
        width: 90%;
        height: 50vh;
        margin-top: 0;
    }
}

.contact-container2 address{
    font-style: normal;
}

.contact-container2 h4{
    color: #383535;
}

.footer-container{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .footer-container{
        height: 170px;
    }
}

.footer-container h1{
    text-align: center;
    color: #895051;
}

.footer-container p{
    margin: 20px;
    color: #808080bb;
    text-align: center;
}

.footer-container1{
    width: 300px;
    display: flex;
    justify-content: space-evenly;
}

.footer-container1 a i{
    color: #895051;
}





/* about page start's from here */

.about-home-page{
    width: 100%;
    height: 50vh;
    background-image: url("https://img.freepik.com/free-photo/close-up-hands-pressing-flour_23-2148584819.jpg?t=st=1726293637~exp=1726297237~hmac=dbf6e21d13686af9e4cdd41aad8476f5a86705c5a7269ad1d98fa4714508bee9&w=1060");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-home-page1{
    width: 100%;
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.468);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-home-page2{
    width: 40%;
    height: 180px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

@media(max-width:1200px){
    .about-home-page2{
        width: 85%;
        height: 180px;
    }
}

.about-home-page2 h1{
    font-size: 45px;
    color: #ffffff;
}

@media(max-width:1200px){
    .about-home-page2 h1{
        font-size: 35px;
    }
}

.about-home-page2 h3{
    text-align: center;
    color: #ffff;
}

@media(max-width:1200px){
    .about-home-page2 h3{
        font-size: 16px;
    }
}



.pages-list{
    width: 100%;
    background-color: #89505127;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages-list ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 30px;
    width: 14%;
}

@media(max-width:1200px){
    .pages-list ul{
        width: 50%;
    }
}

.pages-list ul li{
    list-style: none;
}

.pages-list ul .pages-list1{
   color: rgba(0, 0, 0, 0.600);
   font-size: 15px;
 
}

.pages-list ul .pages-list2{
    color: black;
    font-size: 15px;
    
}



.who-we-container{
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-evenly;
}

@media(max-width:1200px){
    .who-we-container{
        height: 155vh;
        
    }
}

.who-we-container0{
    width: 82%;
    height: 65vh;
    display: flex;
    justify-content: space-between;
    margin-top: 110px;
}

@media(max-width:1200px){
    .who-we-container0{
        height: 150vh;
        width: 90%;
       flex-direction: column;
       margin-top: 65px;
    }
}

.who-we-container1{
    width: 44%;
    height: 60vh;
}

@media(max-width:1200px){
    .who-we-container1{
        width: 100%;
        height: 85vh;
    }
}

.who-we-container1 h6{
    padding-bottom: 60px;
    font-weight: none;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.650);
}

@media(max-width:1200px){
    .who-we-container1 h6{
        font-size: 30px;
        padding-bottom: 40px;
    }
}

.who-we-container1 p{
    padding-bottom: 25px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.51);
}

@media(max-width:1200px){
    .who-we-container1 p{
        padding-bottom: 20px;
    }
}


.who-we-container2{
    width: 47%;
    height: 57vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .who-we-container2{
        width: 100%;
        
    }
}

.who-we-container2 img{
    object-fit: cover;
    width: 100%;
    height: 57vh;
    border-radius: 3px;
}



.slider-about{
    width: 100%;
    height:  100vh;
    display: flex;
    justify-content: space-evenly;
   
    }
    
    @media(max-width:1200px){
        .slider-about{
            height: 162vh;
        }
    }
    
.slider-about0{
    width: 85%;
    height:  80vh;
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
}

    @media(max-width:1200px){
        .slider-about0{
            height: 137vh;
            flex-direction: column;
            width: 90%;
        }
    }
    
    .slider-about1{
        width: 42%;
        height: 72vh;
    }

    @media(max-width:1200px){
        .slider-about1{
            width: 100%;
            height: 73vh;
        }
    }
    
    .slider-about1 .slider-about01{
        height: 140px;
        display: flex;
        align-items: flex-start;
        margin-top: 26px;
    }

    @media(max-width:1200px){
        .slider-about1 .slider-about01{
            height: 90px;
        }
    }
    
    .slider-about1 .slider-about01 li{
        list-style: none;
        padding-right: 20px;
    }
    
    .slider-about1 .slider-about01 li i{
        font-size: 45px;
        color: rgba(0, 0, 0, 0.200);
        padding-top: 20px;
    }

    @media(max-width:1200px){
        .slider-about1 .slider-about01 li i{
            font-size: 30px;
        }
    }
    
    .slider-about1 .slider-about01 li h1{
        line-height: 40px;
        color: rgba(0, 0, 0, 0.611);
        padding-top: 20px;
    }

    @media(max-width:1200px){
        .slider-about1 .slider-about01 li h1{
            font-size: 20px;
            line-height: 27px;
        }
    }
    
    .slider-about1 ul{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        height: 100px;
       
    }
    
    .slider-about1 ul li{
        list-style: none;
    }
    
    .slider-about1 ul li button{
        border: none;
        outline: none;
        background: none;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
        color: rgba(0, 0, 0, 0.700);
    }

    
    
    .slider-about1 p{
        line-height: 22px;
        padding-bottom: 20px;
        color: rgba(0, 0, 0, 0.536);
    }
    
    .read-container{
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media(max-width:1200px){
        .read-container{
            height: 60px;
        }
    }
    
    .read-container a{
        padding: 18px 25px;
        background-color: #895051;
        color: #ffffff;
        border-radius: 1px ;
    }

    @media(max-width:1200px){
        .read-container a{
            padding: 14px 20px;
        }
    }

    
    .slider-about2{
        width: 50%;
        height: 72vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    @media(max-width:1200px){
        .slider-about2{
            width: 100%;
            height: 56vh;
        }
    }
    
    
    .slider-about3{
        width: 100%;
        height: 50vh;
    }

    @media(max-width:1200px){
        .slider-about3{
            width: 100%;
            height: 40vh;
        }
    }

    
    .slider-about3 img{
        width: 100%;
        height: 49.8vh;
        object-fit: cover;
    }

    
    @media(max-width:1200px){
        .slider-about3 img{
            height: 40vh;
        }
    }
    
    .slider-about4{
        width: 100%;
        height: 18vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    @media(max-width:1200px){
        .slider-about4{
            height: 15vh;
        }
    }


    .slider-about5{
        width: 135px;
        height: 130px;
    }

    @media(max-width:1200px){
        .slider-about5{
            width: 80px;
            height: 80px;
        }
    }
    
    .slider-about5 img{
        width: 100%;
        height: 129px;
        object-fit: cover;
    }

    @media(max-width:1200px){
        .slider-about5 img{
            height: 80px;
        }
    }



.why-container{
    width: 100%;
    height: 87vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width:1200px){
    .why-container{
        height: 170vh;
    }
}

.why-container h1{
    margin-top: 80px;
    margin-bottom: 50px;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.805);
}

@media(max-width:1200px){
    .why-container h1{
        font-size: 30px;
        margin-bottom: 25px;
        margin-top: 55px;
    }
}

.why-container0{
    width: 90%;
    height: 60vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media(max-width:1200px){
    .why-container0{
        flex-direction: column;
        height: 170vh;
       
    }
}

.why-container1{
    width: 300px;
    height: 300px;
    padding-left: 20px;
}

@media(max-width:1200px){
    .why-container1{
        background-color: #8950510f;
    }
}

.why-container2{
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

@media(max-width:1200px){
    .why-container2{
        align-items: center;
        
    }
}

.why-container2 i{
    font-size: 50px;
    color: #895051;
    padding-bottom: 28px;
}

.why-container2 h3{
    font-size: 24px;
    color: rgba(0, 0, 0, 0.650);
}

.why-container2 p{
    line-height: 24px;
    font-size: 19px;
    color: rgba(0, 0, 0, 0.500);
}

@media(max-width:1200px){
    .why-container2 p{
        text-align: center;
    }
}


.how-main-page{
    width: 100%;
    height: 54vh;
    background-image: url("Images/millet-field.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}

.how-main-page0{
    width: 100%;
    height: 54vh;
    background-color: rgba(0, 0, 0, 0.380);
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-main-page1{
    width: 80%;
    height: 35vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
}

@media(max-width:1200px){
    .how-main-page1{
        width: 85%;
        height: 30vh;
    }
}

.how-main-page1 h6{
    font-size: 18px;
    letter-spacing: 1.5px;
}



.how-main-page1 h1{
    font-size: 40px;
    letter-spacing: 1.5px;
}

@media(max-width:1200px){
    .how-main-page1 h1{
        font-size: 20px;
        letter-spacing: 1.05px;
        text-align: center;
    }
}

.how-main-page1 p{
    font-size: 19px;
    letter-spacing: 1.5px;
}

@media(max-width:1200px){
    .how-main-page1 p{
        letter-spacing: 1.05px;
        font-size: 16px;
        text-align: center;
    }
}


.geting-container{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media(max-width:1200px){
    .geting-container{
        height: 230vh;
    }
}

.geting-container button{
    width: 200px;
    height: 57px;
    background-color: #895051;
    outline: none;
    border: 1px solid black;
    border-radius: 8px;
}

@media(max-width:1200px){
    .get-container button{
        width: 180px;
        height: 50px;
    }
}

.geting-container button a{
    color: #ffffff;
    letter-spacing: 1.5px;
    font-size: 17px;
    font-weight: bold;
}

@media(max-width:1200px){
    .get-container button a{
        font-size: 1px;
    }
}

.geting-container h1{
    font-size: 40px;
    color: rgba(0, 0, 0, 0.805);
    margin-top: 40px;
    margin-bottom: 50px;
}

@media(max-width:1200px){
    .geting-container h1{
        font-size: 30px;
        margin-bottom: 40px;
    }
}

.geting-container0{
    width: 90%;
    height: 55vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 30px;
}

@media(max-width:1200px){

    .geting-container0{
       height: 220vh;
       flex-direction: column;
    }
}


.geting-container1{
    width: 270px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.geting-image{
    width: 90px;
    height: 90px;
    

}

.geting-image img{
    object-fit: cover;
    width: 100%;
    height: 90px;
}

.geting-container1 h3{
    padding-top: 20px;
    color: rgba(0, 0, 0, 0.700);
}

.geting-container1 p{
    text-align: center;
    padding: 20px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.550);
}


.how-it-text{
    width: 100%;
    height: 20vh;
    background-color: #895051c5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

@media(max-width:1200px){
    .how-it-text{
        height: 17vh;
    }
}

.how-it-text p{
    font-weight: 900;
    font-size: 25px;
    font-style: italic;
    color: rgb(255, 255, 255);
}

@media(max-width:1200px){
    .how-it-text p{
        font-size: 20px;
    }
}

.how-it-text h2{
    font-size: 40px;
    color: rgb(255, 255, 255);
}

@media(max-width:1200px){
    .how-it-text h2{
        font-size: 30px;
    }
}

@media(max-width:1200px){
    .how-it-text h2{
        text-align: center;
    }
}

.how-it-container{
    width: 100%;
    height: 270vh;
    position: relative;
    top: 0;
    left: 0;
    background-color: #89505192;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

@media(max-width:1200px){
    .how-it-container{
        height: 135vh;
    }
}

.how-it-container1{
    width: 90%;
    height: 60vh;
    background-color: #ffffff;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    margin-left: -150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .how-it-container1{
        width: 95%;
        margin-left: -17px;
        height: 30vh;
        justify-content: space-between;
        padding-left: 10px;
    }
}

.how-it-container01{
    width: 55%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  @media(max-width:1200px){
    .how-it-container01{
     width: 67%;
      height: 29vh;
    }
  }

  .how-it-container01 h2{
    font-size: 40px;
    color: rgba(0, 0, 0, 0.700);
  }

  @media(max-width:1200px){
    .how-it-container01 h2{
        font-size: 20px;
    }
  }

  .how-it-container01 p{
    font-size: 30px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.700);
  }

  @media(max-width:1200px){
    .how-it-container01 p{
        font-size: 15px;
        line-height: 17px;
    }
  }
  
  .how-it-container001{
      width: 35%;
      height: 50vh;
  }

  @media(max-width:1200px){
    .how-it-container001{
        width: 31%;
        height: 18vh;
    }
  }
  
  .how-it-container001 img{
      width: 100%;
      height: 50vh;
      object-fit: cover;
  }

  @media(max-width:1200px){
    .how-it-container001 img{
        height: 18vh;
    }
  }

.how-it-circle{
    width: 80px;
    height: 80px;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #895051b5;
}

@media(max-width:1200px){
    .how-it-circle{
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
}
 
.how-it-circle h1 {
    font-size: 40px;
}

@media(max-width:1200px){
    .how-it-circle h1{
        font-size: 20px;
    }
}

.how-it-container2{
    width: 90%;
    height: 60vh;
    background-color: #f5deb3b0;
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
    margin-right: -150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .how-it-container2{
        width: 95%;
        margin-right: -17px;
        height: 30vh;
        justify-content: space-between;
        padding-left: 10px;
    }
}

.how-it-container3{
    width: 90%;
    height: 60vh;
    background-color: #ffffff;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    margin-left: -150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .how-it-container3{
        width: 95%;
        margin-left: -17px;
        height: 30vh;
        justify-content: space-between;
        padding-left: 10px;
    }
}

.how-it-container03{
    width: 55%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  @media(max-width:1200px){
    .how-it-container03{
     width: 65%;
      height: 29vh;
    }
  }

  .how-it-container03 h2{
    font-size: 40px;
    color: rgba(0, 0, 0, 0.700);
  }

  @media(max-width:1200px){
    .how-it-container03 h2{
        font-size: 20px;
    }
  }

  .how-it-container03 p{
    font-size: 30px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.700);
  }

  @media(max-width:1200px){
    .how-it-container03 p{
        font-size: 15px;
        line-height: 17px;
    }
  }
  
  
  .how-it-container003{
      width: 22%;
      height: 41vh;
      
  }

  @media(max-width:1200px){
    .how-it-container003{
        width: 33%;
        height: 13vh;
    }
  }
  
  .how-it-container003 img{
      width: 100%;
      height: 41vh;
      object-fit: cover;
  }

  @media(max-width:1200px){
    .how-it-container003 img{
        width: 75%;
        height: 13vh;
    }
  }


.how-it-container4{
    width: 90%;
    height: 60vh;
    background-color: #f5deb3b0;
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
    margin-right: -150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1200px){
    .how-it-container4{
        width: 95%;
        margin-right: -17px;
        height: 30vh;
        justify-content: space-between;
        padding-left: 10px;
    }
}

.how-it-container004{
    width: 22%;
    height: 41vh;
    margin-right: 50px;
}

@media(max-width:1200px){
  .how-it-container004{
      width: 33%;
      height: 14vh;
  }
}

.how-it-container004 img{
    width: 100%;
    height: 41vh;
    object-fit: cover;
}

@media(max-width:1200px){
  .how-it-container004 img{
      height: 14vh;
      width: 85%;
  }
}


.get-started{
    width: 100%;
    height: 35vh;
    background-color: #895051c5;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.get-started h1{
    font-size: 45px;
    letter-spacing: 1.1px;
    color: #ffff;
}

@media(max-width:1200px){
    .get-started h1{
        font-size: 28px;
    }
}

.get-started p{
    font-size: 18px;
    color: #ffff;
}

@media(max-width:1200px){
    .get-started p{
        text-align: center;
        font-size: 15px;
    }
}

.get-started button{
    width: 200px;
    height: 57px;
    background-color: #ffffff;
    outline: none;
    border: 1px solid black;
    border-radius: 8px;
}

@media(max-width:1200px){
    .get-started button{
        width: 180px;
        height: 50px;
    }
}

.get-started button a{
    color: #895051;
    letter-spacing: 1.5px;
    font-size: 17px;
    font-weight: bold;
}

@media(max-width:1200px){
    .get-started button a{
        font-size: 15px;
    }
}

.advantage-container{
    width: 100%;
    height: 100vh;
}