* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img {
    width: 180px;
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: beige;
    text-decoration: none;
    font-size: 90%;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #e4a12b;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
.text-box {
    width: 90%;
    color: aliceblue;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1 {
    font-size: 63px;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: beige;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: aliceblue;
    border: 1px solid beige;
    padding: 13px 35px;
    font-size: 14px;
    background: transparent;
    position: relative;
}
.hero-btn:hover {
    border: 1px solid #e4a12b;
    background: #e4a12b;
    transition: 1s;
}
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Dark\ blue.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(images/Dark\ blue.jpg);
    background-size: cover;
    background-position: center;
    padding: 10px 10%;
    color: aliceblue;
}
.hero h3 {
    margin-top: 15%;
    font-weight: 400;
    font-size: 30px;
}
.hero h1 {
    margin-top: 30px;
    font-size: 50px;
}
.hero p {
    margin: 10px 0 50px;
}
nav .fa {
    display: none;
}

@media(max-width: 700px){
    .text-box h1 {
        font-size: 20px;
    }
    .text-box h1 {
        font-size: 20px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute;
        background: #e4a12b;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
    .mobile_nav_items .nav_item_action {
        width: 100%;
        display: block;
        font-size: 32px;
        line-height: 44px;
        color: #fff;
    }
    .toggle-cross {
        top: 20px;
        color: #fff;
        font-size: 20px;
        position: absolute;
        text-align: center;
        right: 20px;
        padding: 5px;
        cursor: pointer;
    }
}
form {
    background: #fff;
    display: flex;
    width: fit-content;
}
form input {
    border: 0;
    outline: none;
    padding: 10px 20px;
    height: 70px;
    width: 400px;
    font-size: 17px;
}
form button {
    background: #e4a12b;
    border: none;
    outline: none;
    height: 70px;
    width: 100px;
    cursor: pointer;
}
span {
    color: #e4a12b;
}
