.jobArea{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    margin-top: 15vw;
    margin-bottom: 5vw;
}
.jobArea .title{
    width: 40vw;
    font-family: disp-2;
    font-size: 3vw;
    text-transform: uppercase;
    text-align: start;
    color: #fdf;
}
.jobArea .subtitle{
    width: 40vw;
    font-family: inter;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.2vw;
    color: #eee;
}
.jobArea .br{
    width: 40vw;
    height: 5px;
    border-radius: 1px;
    background: #fdf;
}


.jobArea .content{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 40vw;
}
.jobArea .content .title{
    font-family: inter;
    font-size: 1.5vw;
    font-weight: 500;
    text-transform: capitalize;
    color: #eee;
}
.jobArea .content .text{
    font-size: 17px;
    font-family: inter;
    font-weight: 300;
    color: #eee;
}
.jobArea .content .list{
    font-size: 17px;
    font-family: inter;
    font-weight: 200;
    color: #eee;
    margin-left: 30px;
    margin-top: 1px;
}
.jobArea .content .list::before{
    content: '•';
    margin-right: 5px;
}
.button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3vw;
    padding-block-start: 13px;
    padding-block-end: 10px;
    padding-inline: 50px;
    border: 5px solid #8f8fc9;
    border-radius: 5px;
    background: #72729b;
    font-family: disp-2;
    font-size: 1.2vw;
    text-align: center;
    text-transform: uppercase;
    color: #eee;
    transition: .2s ease;
}
.button:hover{
    scale: .97;
    border: 5px solid #8fc98f;
    background: #729b72;
}


@media screen and (max-width: 1700px) {
    .jobArea .title{
        width: 60vw;
    }
    .jobArea .subtitle{
        width: 60vw;
    }
    .jobArea .br{
        width: 60vw;
    }
    .jobArea .content{
        width: 60vw;
    }
}

@media screen and (max-width: 1199px) {
    .jobArea{
        margin-top: 150px;
    }
    .jobArea .title{
        width: 70vw;
        font-size: 6vw;
    }
    .jobArea .subtitle{
        width: 70vw;
        font-size: 2vw;
    }
    .jobArea .br{
        width: 70vw;
    }
    .jobArea .content{
        width: 70vw;
    }
    .jobArea .content .title{
        font-size: 3vw;
    }
    .button{
        margin-top: 7vw;
        font-size: 3vw;
    }
}
@media screen and (max-width: 768px) {
    .jobArea{
        margin-top: 150px;
    }
    .jobArea .title{
        width: 80vw;
        font-size: 8vw;
    }
    .jobArea .subtitle{
        width: 80vw;
        font-size: 4vw;
    }
    .jobArea .br{
        width: 80vw;
    }
    .jobArea .content{
        width: 80vw;
    }
    .jobArea .content .title{
        font-size: 5vw;
    }
    .button{
        margin-top: 10vw;
        font-size: 5vw;
    }
}