*{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #333;
    margin-top: 0;
    margin-left: 8px;
    margin-right: 8px;
}
a:hover{
    font-weight: bold;
}
.nav1{
    width: 100%;
    display:flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    padding: 2px 20px;
    position: fixed;
    background-color: white;
    z-index: 99999;
    border-bottom: 2px solid;
}
.nav1 > div{
    display: flex; 
}
.nav1 >div > a > img{
    width: 200px;
}
.nav2{
    width: 100%;
    display:flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    position: fixed;
    background-color: white;
    z-index: 99999;
    margin-top: 65px;
}
.nav2 > a{
    text-decoration: none;
    color: black;
}
a{
    color: black;
}
.nav2 > a:hover{
    box-shadow: black 0px 2px;
}
form{
    width: 300px;
    margin: 0 auto;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    border-radius: 10px;
    padding: 30px 70px;
    text-align: center;
    margin-top: 150px;
}
form > div > img{
    width: 50%;
}
.name{
    width: 280px;
    margin-top: 15px;
    border: none;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
    border-radius: 3px;
    font-size: 15px;
    padding: 6px;
    border-left: 1px solid black;
}
#submit{
    width: 295px;
    border: none;
    margin-top: 15px;
    padding: 10px 70px;
    background-color: black;
    color: #fff;
    font-size: medium;
    
}
#submit:hover{
    background-color: rgb(76, 75, 75);
}
label{
    font-size:small;
    color: rgb(82, 76, 76);
    text-align: right;
}
.footer{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    background-color: rgb(233, 230, 230);
}
.footer > div > p:hover{
    font-weight: bold;
    cursor: pointer;
}
.footer2{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 30px;
    padding: 0px 20px;
    background-color: rgb(233, 230, 230);
}
.footer2 > p:hover{
    box-shadow: black 0px 2px;
    cursor: pointer;
}
.links > div{  
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr); 
}
.links > div > a > img{
    width: 170%;
    margin-left: 0;
}
.links > div > a > img:hover{
    background-color: #fff;
}

@media only screen and (max-width: 720px){
    .nav1{
        padding: 0px 0px;
        padding-right: 20px;
    }
    form{
        margin-top: 170px;
    }
    .footer{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 10px;
        padding: 10px;
    }
}
@media only screen and (max-width: 440px){

    .nav1{
        padding: 10px 0px;
        padding-right: 20px;
    }
    .nav1 >div > a > img{
        width: 160px;
    }
    .nav2{
        display: none;
    }
    form{
        width: 300px;
        padding: 30px 40px;
        text-align: center;
        margin-top: 100px;
    }
    .footer{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .footer2{
        display: none;
    }
}