@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
    position: relative;

}

body{
    font-family: 'Josefin Sans', sans-serif;
    color: black;
    
}
.container{
    max-width: 1000px;
    width:100%; 
    margin: 0px auto;
}
#header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 50px;
    z-index: 1;
    top:0;
    background-color: white;
}

#header-img{
    
    max-width: 100%;
    width: 250px;
    height:50px;
    cursor: pointer;

}

@media(max-width: 800px){
    #header-img{
        width: 200px;
        height: 40px;
    }
}

.nav-list{
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
.nav-items{
    list-style: none;
    display: inline-block;
    padding: 0px 20px;
}

a{
    margin: 10px;
    text-decoration: none;
    padding: 11px 20px;
    color: #001a33;
}

li a:hover{
    color:#ffad33;
}

@media(max-width: 720px){

    #header{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        height: 140px
    }
    #header-img{
        margin: auto;
    }
    .nav-list{
        display: flex;
        flex-direction: column;
    }
    .nav-list li{
        padding: 5px;
        margin-top: 5px;
    }
    .nav-list a{
        font-size: 1.1em;
    }
}

#form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
    height: 400px;
    /* border: 5px solid red; */
    margin-top: 50px;
    color: white;
    
}

#form-box{
    height: 300px;
    width: 400px;
    background-color: #001a33;
    
}

#form-box h3{
    margin-top: 2em;
    font-family: 'Open Sans', sans-serif;
}
#form label{
    font-size: 1.3em;
}
#name,#email {
    margin-top: 1.5em;
    max-width: 275px;
    width: 100%;
    padding: 5px;
    
}
#form input[type ='submit']{   
    max-width: 200px;
    width:200px;
    height: 50px;
    margin-top: 2em;
    margin-left: 2em;
    font-size: 1em;
    font-weight: bold;
    border:0;
    background-color: #f1c40f;
    cursor: pointer;
    box-shadow: 2px 5px;
    border-radius: 2px;   
}
#form input[type ='submit']:hover{
    background-color: orange;
}
@media(max-width: 720px){
    #form{
        margin-top: 130px;
    }
}
.grid{
    display: flex;
}
#Features{
    margin-top:30px;
    /* background-color: aqua; */
}
#Features .icon{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 125px;
    width:20vw;
    font-size: 80px;
    margin-right: 5px;
    color: orange;
    /* border: 2px red solid; */
}
#Features .feature-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 125px;
    width: 80vw;
    /* margin-right: 200px; */
    font-size: 1.3em;
    padding: 5px;
    /* border: 2px red solid; */

    
  }
#Howitworks{
    margin-top:50px;
    display: flex;
    justify-content: center;
}
#Pricing{
    margin-top: 80px; 
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.product{
    background-color: #001a33;
    padding: 1.5em 0px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: calc(100%/3); 
    border-radius: 2.7px; 
}

.product li{
    padding: 0.6em;
    list-style: none;
}
.product h2{
    margin-top: 10px;
}
.hr{
    width: 10em;
    height: 3px;
    background-color: #f1c40f;
    margin-top: 0.2em;
}
.select{
    cursor: pointer;
    width: 8em;
    height: 3em;
    font-size: 1em;
    font-weight: bold;
    margin-top: 2px;
    background-color: #f1c40f;
    border: 2px solid black;
}
.select:hover{
    background-color: orange;
    transition: background-color 1s;

}

@media(max-width: 800px){
    #Pricing{
        flex-direction: column;
    }
    .product{
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    
}



footer{
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #ddd;
    padding: 20px;

}
footer >ul{
    list-style: none;
    display: flex;
    flex-direction: row;
}
footer li a{
    padding: 5px;
    color: #001a33;
    text-decoration: none;
}
