.openPositions{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 4rem;
    margin-block: 128px;
}

.openPositions h1{
    width: 90vw;
    text-align: center;
}

.openPositions .btns{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.openPositions .btns .btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(702px - 4rem);
    height: calc(144px - 4rem);
    gap: 10px;
    padding: 2rem;
    border-radius: 3.125rem;
    font-size: 32px;
    background: #000;
    z-index: 10;
}

.openPositions .btns .btn .title{
    font-family: nb;
}

.openPositions .btns .btn .text{
    font-family: nr;
}

.openPositions .btns .btn:hover div{
    text-decoration: underline;
}

.career footer{
    background: transparent;
}


@media screen and (max-width: 959px) {
    .openPositions .btns .btn{
    width: calc(90vw - 4rem);
    }
}
@media screen and (max-width: 659px) {
    .openPositions .btns .btn{
    height: calc(128px - 4rem);
    font-size: 24px;
    }
}