@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



body{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    background-color: #1f2937;
    color: aliceblue;
    font-family: 'roboto',sans-serif;

}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0px;
    position: fixed;
    top:0;
    width: 100%;
    background-color: #1f2937;
}

#logo{
    font-size: 24px;
    font-weight: 800;
}

ul{
    list-style: none;
    display: flex;
    gap: 24px;
    padding-right: 40px;
}


a{
    text-decoration: none;
    color:#e5e7eb;
    font-size: 18px;
    margin-right: 20px;
}

/* Mobile nav */

.side-bar{
    margin: 0;
    position: fixed;
    top:0;
    height: 100vh;
    right: 0;
    width:250px;
    background-color: #e5e7eb;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding:20px;

    z-index: 999;
   
}
.side-bar li {
    width: 100%;
}

.side-bar a{
    width: 100%;
    color: #1f2937;
    margin-left: 40px;
    
}


.menu-button{
    display: none;
}

.hero{
    display: flex;
    gap: 40px;
    height: 80vh;
    justify-content: center;
    align-items: center;
    margin: 0px 80px;    
}

.hero .text{
    padding: 40px;
}

.hero .text h1{
    color: #f9faf8;
    font-size: 48px;
    font-weight: bolder;
    line-height: 72px;
}
#js{
    background-color: yellow;
    color: black;
    padding: 10px;
    border-radius: 10px 20px 0px 20px;
}


.hero .text p{
    color: #e5e7eb;
    font-size: 18px;
}

.hero .text button{
    background-color: #3882F6;
    font-size: 18px;
    color: #e5e7eb;
    font-weight: 600;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
}

.hero .hero-img{
    width: 100%;
    
}
#hero-img{
    width: 100%;
    height: 400px;
    background-image: url(images/hero7.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; 
}


.benefits{
    background-color: white;
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
    color: #1f2937;
    align-items: center;
    gap: 20px;

}

.benefits h2{
    font-size: 36px;
}

.benefits .cards{
    padding: 60px 0px;
    display: flex;
    text-align: center;
    gap: 30px;
}

.benefits .cards .img{
    margin-bottom: 40px;
}

strong{
    font-size: 24px;
}


.testimony{
    background-color: #e5e7eb;
    color: #1f2937;
    padding: 40px 80px;
    font-size: 36px;
    display: flex;
    flex-direction: column;
    font-weight: 200;
}

.testimony span{
    font-size: 20px;
    margin-left: auto;
    font-style: normal;
    font-weight: 400;
    text-align: end;

}

.wrapper{
    padding: 80px 200px;
    background-color: white;
    
}

.cta{
    background-color: #3882f6;
    padding: 40px 80px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button{
    background-color: #3882F6;
    font-size: 18px;
    color: #e5e7eb;
    font-weight: 600;
    padding: 10px 22px;
    border:solid;
    border-radius: 8px;
    border-color: #f9faf8;
    margin-top: 10px;
}

footer{
    text-align: center;
    padding: 30px;
}


