*{
    margin: 0;
    padding: 0;
}
body{
    margin:0;
    padding:0;
    background: #ffffff;
    background-size: cover;
}
.menu ul{
    display: inline-flex;
    margin-top: 50px;
    margin-left: 50px;
}
.menu ul li{
    list-style: none;
    margin: 0 20px;
    color: #000000;
    cursor: default;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: small-caps;
}
.menu ul li a{
    list-style: none;
    text-decoration: none;
    margin: 0 20px;
    color: #000000;
    cursor: default;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: small-caps;
}
.menu ul li a:hover{
    color: #646464;
    cursor: pointer;
}
.logo img{
    width: 40px;
    margin-top: -10px;
    margin-left: 20px;
}
.action-btn{
    top: 40px;
    right: 40px;
    position: absolute;
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#ffffff,#c7c7c7), radial-gradient(circle at top right, #4834fa,#19d7f8);
    background-origin: border-box;
    background-clip: content-box, border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.action-btn span{
    display: block;
    padding: 8px 15px;
}
.banner{
    width: 50%;
    height: 80%;
    top: 15%;
    left: 130px;
    padding-bottom: 30px;
    position: absolute;
    display: inline-flexbox;
    color: #000000;
}
.app-txt{
    width: 70%;
    float: left;
}
.app-txt h1{
    font-size: 60px;
    width: 640px;
    position: relative;
    margin-left: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
}
.app-txt h3{
    font-size: 40px;
    width: 640px;
    position: relative;
    margin-left: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
}
.app-txt h4{
    font-size: 28px;
    width: 640px;
    position: relative;
    margin-left: 40px;
    margin-top: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    animation: fadeInAnimation ease 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards; 
}
.app-txt p{
    font-size: 20px;
    font-weight: 75;
    width: 650px;
    margin: 10px 0px 10px 40px;
    line-height: 1.25;
    color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: normal;
    animation: fadeInAnimation ease 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards; 
}
.app-txt ol li{
    font-size: 20px;
    font-weight: 75;
    width: 650px;
    margin-left: 70px;
    color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: normal;
    animation: fadeInAnimation ease 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards; 
}
.app-txt ul li{
    font-size: 20px;
    font-weight: 75;
    width: 650px;
    margin-left: 70px;
    margin-bottom: 5px;
    color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-variant: normal;
    animation: fadeInAnimation ease 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards; 
}
form{
    width: 50%;
    height: 80%;
    top: 35%;
    position: absolute;
    text-align: center
}
.contact-form{
    animation: fadeInAnimation ease 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards; 
}
.contact-form h2{
    position: absolute;
    text-align: center;
    font-size: 60px;
    width: 50%;
    top: 25%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    color: #000000;
}
.form-control{
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    margin-bottom: 15px;
    color: #000000;
    width: 500px;
    font-family: Arial;
    font-size: 14px;
}
.submit-btn{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    font-variant: small-caps;
    border-radius: 5px 5px 5px 5px;
    background-color: transparent;
    color: #000000;
    padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
}
.mail_img{
    width: 25%;
    margin-top: 5%;
    margin-left: 60%;
    position: relative;
}
.product_img{
    width: 25%;
    margin-top: 10%;
    margin-left: 60%;
    position: relative;
    animation: fadeInAnimation ease 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation { 
    0% { 
        opacity: 0; 
    } 
    100% { 
        opacity: 1; 
    } 
} 