#vacancies-container #limit-container{
    min-height: calc(100vh - 168px - 80px);
    padding: 60px 0px;
    background: var(--vacancies-bg);
    border-right: 1px solid;
    border-left: 1px solid;
}

.line-of-work{
    background-color: rgb(255, 255, 255);
    height: fit-content;
    max-width: 600px;
    width: 95%;
    padding: 40px;
    border-radius: 0px 40px 40px 0px;
    margin-left: -1px;
    margin-bottom: 60px;
    border: 1px solid;
    border-left: 0px;
}
.vacancie-apli{
    background-color: rgb(255, 255, 255);
    max-width: 800px;
    width: 95%;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
}

.top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}
.vacancie-img{
    min-height: 200px;
    min-width: 200px;
    
    margin-right: 20px;
    
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
#v-img-1{
    background-image: url("/src/images/seller.png");
}
#v-img-2{
    background-image: url("/src/images/worker.png");
}
.top .p1{
    text-align: center;
}
.bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom p{
    max-width: 80%;
}
.bottom a{
    background-color: var(--p-color);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: medium;
    color: white;
    border: 0px;
    margin: auto;
}
@media screen and (max-width:768px) {
    .top{
        flex-direction: column;
    }
    .bottom{
        flex-direction: column;
    }
    .top .p1{
        margin-top: 30px;
    }
}