body {
    margin: 0;
    padding: 0;
    background-image: url('assets/images/bg-2000x1500.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.nav{
    display: flex;
    /* background-color: white; */
    opacity: 0.9;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 95px;
}

.pes-logo{
    margin-top: 20px;
    width: 70px;
}

.logo-text{
    margin-top: 60px;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #06076d;
}


.cover {
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
    padding: 40px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    gap: 100px;
}


.jobContainer{
    margin-top: -150px;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-align: center;
}

.job{
    font-size: 30px;
    margin-top: 50px;
    margin-left: 150px;
    font-family: Arial, Helvetica, sans-serif;
}

.Trainee_Draftman{
    margin-top: 50px;
}

a{
    text-decoration: none;
    color: rgb(0, 0, 191);
}

a:visited{
    color: rgb(0, 0, 191);
}

a:hover{
    color: rgb(36, 36, 36);
}



.jobContainer, .job, nav {
    animation-name: downtoup;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-direction: normal;
    /* animation-iteration-count: 2; */
    /* animation: downtoup 2s ease-in 1s 2 alternate; */
}

@keyframes downtoup {
    from {
        opacity: 0.1;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

    0% {
        /* transform: translateY(0); */
    }

    20% {}

    50% {}

    70% {}

    100% {}
}



/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {

    body {
        background-position: center top;
        background-size: cover;
    }

    .cover {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }

    .nav {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 5px;
    }

    .pes-logo {
        width: 100px;
        margin-top: -90px;
    }

    .logo-text {
        margin-top: 10px;
        font-size: 18px;
        text-align: center;
        /* padding: 0 10px; */
    }

    .btn {
        width: 110%;
        max-width: 380px;
        height: 55px;
        font-size: 15px;
        margin-bottom: 40px;
    }

    .completed-proj-icon {
        width: 35px;
    }

    .run-proj-icon {
        width: 28px;
    }
}
