.job-page__container {
    text-align: left;
    padding-left: 35px;
}

.job-page__container h1 {
    font-size: 45px;
}

.job-page__container h2 {
    font-size: 35px;
}

.job-page__company-name {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.job-page__company-name img {
    width: 50px;
    height: 50px;
}

.job-page__body-container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    padding-right: 35px;
    line-height: 25px;
}

@media (min-width: 769px) {
    .job-page__body-container {
        grid-template-columns: repeat(2,1fr);
    }
}

.job-page__lhs {
    margin-top: 50px;
    padding-right: 50px;
}

@media (min-width: 769px) {
    .job-page__lhs {
        min-height: 1650px;
    }
}

.job-page__lhs__heading {
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 15px;
}

.job-page__lhs__heading:first-child {
    margin-top: 0px;
} 

.apply-button__desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .apply-button__desktop-only {
        display: block;
        max-width: 100px;
        background-color: hotpink;
        padding: 15px 80px;
        border-radius: 5px;
        cursor: pointer;
        color: white;
        transition: 0.3s;
        box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
    }
}

.apply-button {
    background-color: hotpink;
    padding: 15px 80px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
}

.apply-button:hover {
    background-color: #5271ff;
    transition: 0.3s;
    padding: 18px 85px;
}

.job-page__rhs {
    text-align: left;
    line-height: 30px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: aliceblue;
    margin-bottom: 35px;
}

@media (min-width: 769px) {
    .job-page__rhs {
        position: fixed;
        width: 500px;
        right: 35px;
        bottom: 50px;
        margin: auto;
        margin-top: 100px;
    }
}

.job-page__rhs__heading {
    color: #5271ff;
    font-weight: bold;
}