
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
#wrapper{
    height:100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
}


.nav ul{
    display:flex;
    gap: 20px;
    list-style: none;
    background-color: black;
    padding: 20px;
    
}
li a{
    text-decoration: none;
    color:white;
}
.search{
    margin-left: 450px;
}
.button{
    padding: 2px;

}
:hover button{
    cursor: pointer;
}
.hero-section{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(192 , 243 , 116);
    color: white;
    padding:40px;
    gap:20px;
    
}
.hero-section h1{
    font-size: 40px;
    padding-top: 60px;
}
    
.hero-section p{
    font-size: large;
    margin-left: 153px;

}
.hero-section button{
    padding: 10px;
    border-radius: 4px;
    margin-right: 248px;
    border: none;
}
:hover .hero-section button{
    cursor: pointer;
    
    
}
.middle-section{
    margin: 0 auto;
    width: 80%;
}
.sub-heading{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
margin-top: 50px;
    
}
.sub-heading h2 {
    color: black;
    font-size: 30px;
    
}
.sub-heading h4{
    color: gray;
}
.para{
    margin-top: 30px;
}
.bigbox{
    
    display: flex;
    width: 100%;
    gap: 20px;

}
.box{
    width:33%;
    height: 300px;
    background-color: rgb(210, 205, 205);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.attach-part{
    display: flex;
    gap: 20px;
    width: 100%;
}
.box-font{
    font-size: 40px;
}
.sec{
    width: 33%;
}
.sec h2{
    color:rgb(18, 119, 159);
    margin-top: 20px;
}
.sec p{
    margin-top: 12px;
}
.lower-section{
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    background-color:rgb(222, 144, 0);
    padding: 20px;
    width: 100vw;
    

}
.branch{
    width: 20%;
}
.lower-section button{
    padding: 10px;
    margin-top: 10px;
}
.footer{
    margin: 50px;

}
.footer a{
    text-decoration: none;
    color: blue;
    
}
.copy a{
    color: gray;
    text-decoration: none;

    
}