@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


  
.__jobcontainer {
    padding: 1rem;
    border-radius: 5px;
  
}

.__jobtitle {
    line-height: 1;
    margin-bottom: 1rem;
   
}

.__jobtitle>p {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}
.btnred:hover{
    background: white;
    color: #882a2a;
    border: 1px solid #882a2a;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.5s;
}
.card:hover{
    cursor: pointer;
    transform: translateZ(20px); 
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(0.9);
}
.__jobsalary {
    color: white;
    margin-bottom: 1rem;
}

.__jobsalary small {
    padding: 5px 15px;
    border-radius: 5px;
    background: forestgreen;
    opacity: 0.8;
}

.__jobdesc {
    display: block;
    height: 150px;
    overflow-y: hidden;
    cursor: pointer;
    opacity: 30%;
    transition: all 1s
}

.__jobdesc:hover {
    opacity: 100%;
    transition: all 1s
}

.__jobdesc:focus {
    height: fit-content;
    opacity: 100%;
    transition: all 1s
}
 .job-title{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
 }
 .job-company{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
 }

 .job-salary{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    border: transparent;
    width: 70%;
    padding-left: 10px;
    padding: 7px 5px;
    border-radius: 10px;
    background-color: rgb(192, 57, 43);
    color: rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgb(255, 255, 255);
 }
 .job-salary small{
    padding-left: 10px;
 }