:root{
        --primary-color:orange; 
}
*, *::before, *::after{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: "Forum", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: all .4s !important;
}

header{
    background: url(https://static.vecteezy.com/system/resources/thumbnails/035/496/535/small_2x/ai-generated-logistics-truck-ship-cargo-photo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position: fixed; 
    margin-top: 80px;
}
.header-wrapper{
        height:100vh;
        background: linear-gradient(180deg, rgba(253, 253, 253, 0.493), white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        color:#a37803;
        padding: 50px
        
}
@media(max-width:768px){
    .header-wrapper{
        padding:10px !important;
        height:80vh
    }
}
.header-wrapper h1, .header-wrapper p{
    width:600px;   

    
}

.header-wrapper h1{
    font-size: 50px;
}
@media(max-width:768px){
    .header-wrapper{
        padding: 20px !important
    }
 .header-wrapper h1, .header-wrapper p{
    width:100% !important;    
    text-align: center; 
}

.header-wrapper h1{
    font-size: 30px;
}
.header-wrapper p{
    font-size: 10px !important;
}
}
nav{
    background-color: white;
    position: fixed;
    top:0;
    left:0;
    right:0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:80px;
    z-index: 1000;
    padding: 0 20px
}
nav a.logo{
    position:relative;
    color:#a37803;
}
nav a.logo span{
    position: absolute;
    bottom: -20%;
    left:30%;
    font-size: 12px;
}
nav a.logo img{
    display: block;
    width:200px
}
nav ul.menus{
    display: flex;
    align-items: center;
    gap:10px;
    list-style: none;
    margin-top: 14px;
}
ul.menus li a{
    text-decoration: none;
    color:var(--primary-color);
    display: block;
    text-transform: uppercase;
}
ul.menus li a.active{
    background-color: var(--primary-color);
    color:white;
    padding:10px;
}
@media(max-width:768px){
    nav{
        padding: 0 10px !important;
        justify-content: center;
    }
    ul.menus{
        position:fixed;
        bottom: 0;
        left:0;
        right:0;
        background-color: white;
        margin:0 !important;
        border-top:1px solid lightgray;
        padding:10px;
        justify-content: center;
    }
}
.reveal{
    opacity: 0;
    transform: translateY(40px);
}
.reveal.show{
    opacity: 1;
    transform: translateY(0);
}

footer img{
    display: block;
    width:300px
}