*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
:root{
    --red: #F26419;
    --orange: #F6AE2D;
    --dark-blue: #33658A;
    --light-blue: #86BBD8;
    --dark: #2F4858;
}
html{
    scroll-behavior: smooth;
}
.container__center{
    display: flex;
    flex-direction: column;
    justify-content: ;
    align-items: center;
    text-transform: capitalize;
}
.center__row{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
#landing__area{
    width: 100%;
    height: 100vh;
    padding-bottom: 500px;
    position: absolute;
}

#landing__area nav{
    height: 30%;
    width: 80%;
}

nav .logo{
    color: var(--orange);
    cursor: pointer;
}

nav a{
    position: relative;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: var(--light-blue);
    letter-spacing: .5px;
    margin: 0 15px;
    padding: 0 5px;
}
nav a:after{
    content: "";
    position: absolute;
    background-color: var(--orange);
    height: 3px;
    width: 0%;
    left: 0;
    bottom: -10px;
    transition: .3s;
}
nav a:hover:after{
    width: 100%;
}
nav a:hover{color: var(--orange);}

a{text-decoration: none;}

ul li{list-style: none;}

.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), #3551b5), url(bg.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.hero h1{
    padding: 
    text-align: center;
    width: 18%;
    font-size: 70px;
    -webkit-text-stroke: 0.1vw #383d52;
    position: relative;
    color: transparent;
    text-transform: uppercase;
}
.hero h1::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: orange;
    -webkit-text-stroke: 0vw #383d52;
    border-right: 2px solid orange;
    overflow: hidden;
    animation: animate 6s linear infinite;
}
@keyframes animate{
    0%,10%,100%{
        width: 0;
    }
    70%,90%{
        width: 100%;
    }
}
form{
    padding-left: 80px;
    width: 90%;
    max-width: 600px;
}
.input-group{
    margin-bottom: 30px;
    position: relative;
}
input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;
}
label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: .2s;
}
button{
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width: 100%;
    cursor: pointer;
}
input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top: -35px;
    font-size: 14px;
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row .input-group{
    flex-basis: 48%;
}
i{
    padding-right: 5px;
}