/* PAGE TYPOGRAPHY/FORMATTING */
.career-info{
    width: 80%;
    margin: 0 auto;
    p{
        line-height: 28px;
        text-align: center;
        font-size: 17px;
    }
}

.career-heading{
    margin-bottom: 35px;
}

.why-us-answer{
    font-size: 19px;
    line-height: 28px;
}

.bullet-why-us{
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 25px;
    font-size: 16.5px;
    line-height: 24px;
}
.bullet-why-us div{
    margin-bottom: 25px;
    width: 35vw;
    min-width: 400px;
    color: white;
    border-radius: 25px;
    text-align: center;
    padding: 20px;

    box-shadow: .33em .66em rgba(2, 2, 2, 0.139);
}
.bullet-why-us div:nth-child(2n + 1){
    background-color: #1976d2;
}
.bullet-why-us div:nth-child(2n + 2){
    background-color: rgb(76, 175, 80);
}
.bullet-why-us div:nth-child(2n + 3){
    background-color: rgb(76, 175, 80);
}
.bullet-why-us div:nth-child(2n + 4){
    background-color: #1976d2;
}

.career-p{
    margin: 40px 0px;
}

.perks{
    font-size: 17px;

    margin-top: 7vh;
    margin-bottom: 7vh;
    width: 65%;

    ul{
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 15px;
         margin-left: 10px;
        li{
            width: fit-content;
            margin-left: 30px;
        }
    }
}

.non-discrimination-statement{
    margin: 5vh 0px;
    p{
        font-size: 16.5px;
        line-height: 26px;
        margin-left: 4vw !important;
    }
}

/* JOB POST */
.individual-job-post{
    display: flex;
    flex-flow: column nowrap;
    border: 2px solid black;
    border-radius: 25px;
    box-shadow: grey 5px 5px 5px 5px;
    margin: 28px 0px;
    padding: 10px 20px;
    position: relative;

    h1,h2,h3,h4,h5{
        width: fit-content;
    }
}

.individual-job-post h1,h2,h3,h4,h5,p{
    margin: 10px 0;
}

.skill-lists{
    display: flex;
    flex-flow: row wrap;
    gap: 10%;
}

.required-skill-list, .recommended-skill-list{
    margin-left: 30px;
}

.job-post-title{
    margin-right: 95px;
}

.application-action{
    position: absolute;
    right: 25px;
    top: 6px;
}

.job-wage{
    display: inline-block;
}

.job-position{
    display: inline-block;
}

/* FORM */
form section{
    margin: 12px 0px;
}

form input{
    line-height: 22px;
}

#certifications{
    height: 75px;
    width: 630px;
}

#cover_letter{
    height: 95px;
    width: 900px;
}

#email{
    width: 253px;
}

.add-certifications, .add-cover-letter{
    display: flex;
    flex-flow: column nowrap;
    align-items: start;
    gap: 5px;
}

.form-names{
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
}

.add-resume{
    margin: 20px 0;
}

#resume{
    margin-top: 6px;
}

input::file-selector-button {
    background-color: rgba(128, 128, 128, 0.8);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    padding: 6px;
}
input::file-selector-button:hover{
    cursor: pointer;
    opacity: .75;
}

/* MOBILE */
@media (max-width: 1300px) {
    .perks{
        width: 80%;
    }
}

@media (max-width: 950px) {
    .career-info{
        width: 95%;
    }
    .perks{
        width: 100%;
    }
}

@media (max-width: 850px) {
    .add-certifications, .add-cover-letter{
        flex-flow: column nowrap;
    }
    #certifications{
        width: 95%;
    }
    
    #cover_letter{
        width: 95%;
    }

    .container{
        width: 92%;
    }
}

@media (max-width: 800px) {
    .form-names{
        flex-flow: column;
        gap: 0;
    }
}

@media (max-width: 800px) {
    .container{
        width: 98%;
    }
    .application-action{
        right: 5px;
        top: 5px;
    }
    .job-post-title{
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .bullet-why-us{
        width: 100%;
        div{
            padding: 15px;
            max-width: 400px;
            min-width: 350px;
        }
    }

    .perks{
        ul{
            grid-template-columns: 1fr;
        }
    }
    
    .non-discrimination-statement{
        width: 100%;
    }
}

@media (max-width: 425px) {
    .bullet-why-us div{
        min-width: 300px;
        max-width: 330px;
    }
    .job-post-title{
        font-size: 18.5px;
    }
}