*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container{
    padding: 30px;
}
.head{
    background-color: antiquewhite;
}
.row{
    display: flex;
    justify-content: space-between;
}
.headImage{
    width: 100%;
}
img{
    width: 100%;
}

.header{
    margin: 30px auto;
}

h1,h3,p,ul,.box{
    margin-top: 25px;
}
p{
    line-height: 24px;
}
li{
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    list-style-image: url(img/Checkmark.svg);
    list-style-position: inside;
}
input{
    width: 55%;
    border: 1px solid black;
    padding: 1em;
}
.btn{
    width: 40%;
    border: none;
    background-color: black;
    color: white;
}

.company_logo img{
    width: 30%;
}

/* main starts */

main{
    background-color: wheat;
    margin-top: 25px;
    padding: 25px;
    padding-bottom: 0;
    border-radius: 10px;
}
a{
    color: black;
}
a:hover{
    cursor: pointer;
}
/* main ends */

/* section starts */

.text_editor_img{
    margin-top: 25px;
}

/* section ends */

/* footer starts */
footer{
    background-color: black;
    color: white;
}
footer a{
    color: white;
    text-decoration: none;
}
footer a:hover{
    opacity: .5;
}
footer li{
    list-style-position: outside;
    margin-top: 0px;
}
/* footer ends */

/* menu starts */

.menu_screen{
    width: 100%;
    height: 100vh;
    background-color: white;
    color: black;
    position: absolute;
    
    visibility: hidden;
    animation: menu 1s ease-in ;
   
}
.cancel{
    width: 50px;
    position: absolute;
    right: 50px;

}
.menu_screen .btn{
    padding: 10px;
}
.menu_screen li{
    list-style-image: none;
    list-style-type: none;
    padding: 2em;
    
}
.menu_screen a{
    text-decoration: none;
}
.menu_screen a:hover{
    opacity: .5;
    text-decoration: underline;
}
.menu_screen ul{
    text-align: center;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    
}

/* menu ends */

@keyframes menu{
    0%{
        top: -100%;
    }
    25%{
        top: -75%;
    }
    50%{
        top: 50%;
    }
    75%{
        top: 25%;
    }
    100%{
        top: 0%;
    }
}



/* adding cursor  */

.cancel,a,.menu{
    cursor: pointer;
}


/* finished */