.vacancy-details {
    padding-top: 45px;
}

.vacancy-details-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.vacancy-info-card {
    width: 60%;
    background: rgb(232, 239, 255);
    background: linear-gradient(23deg, rgba(232, 239, 255, 1) 0%, rgba(233, 240, 254, 1) 100%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:30px 20px 40px 20px;
}

.vacancy-info-card-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.card-info-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-heading h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    color: #13307E;
}

.info-card-type h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    color: #056DFA;
}

.info-card-date {
    width: 101px;
    height: 24px;
    display: flex;
    justify-content: space-between;
}

.info-card-date img {
    width: 24px;
    height: 24px;
}

.info-card-date span {
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E;
}

.card-info-description,
.card-info-requirements {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.card-info-heading sub {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0em;
    color: #056DFA;
}

.card-info-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E;
}

.vacancy-upload-card {
    width: 40%;
    height: 441px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 35px 0px #829DBC26;
    border-radius: 30px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vacancy-upload-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.upload-card-heading h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    color: #056DFA;
}

.upload-card-border {
    width: 100%;
    height: 157px;
    border-radius: 20px;
    border: 2px solid #056DFA;
    border-style: dashed;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 17px;
}


.upload-card-border img {
    width: 42.17px;
    height: 30.67px;
    color: #056DFA;
    opacity: .5;

}

.upload-card-button {
    display: flex;
    justify-content: flex-end;
}
.upload-card-border h3,a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    text-align: left;
    color: #056DFA;
}
.upload-mobile{
    display: none;
}
.upload-card-button button {
    width: 210px;
    height: 52px;
    cursor:pointer;
    border-radius: 16px;
    background-color: #056DFA;
    color: #FFFFFF;
    border: 1px solid transparent;
    transition: .3s;
}
.upload-card-button button:hover {
    background-color: #13307E;
    color: #FFFFFF;
    border: 1px solid #13307E;
    transition: .3s;
}