.vacanciesPage {
    display: grid;
    row-gap: 60px;
}
.vacanciesPage--title {
    color: #231F20;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 24px;
}
.vacanciesBenefitsBlock {
    display: flex;
    column-gap: 20px;
}
.vacanciesBenefits__items {
    flex: 1;
}
.vacanciesContacts {
    padding: 24px 22px;
    border-radius: 13px;
    border: 1px solid rgba(113, 133, 158, 0.10);
    background: #FFF;
    box-shadow: -30px 11px 50px 0 rgba(147, 151, 173, 0.20);
    width: 322px;
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 24px;
}
.vacanciesContacts--title {
    color: #231F20;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 16px;
}
.vacanciesContacts--phone {
    color: #231F20;
    font-size: 29px;
    font-weight: 700;
    line-height: 36px;
}
.vacanciesContacts--buttonText {
    color: #71859E;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 12px;
    padding: 0 4px;
}
.vacanciesContacts--button {
    width: 100%;
}
.vacanciesBenefits {
    padding: 16px;
    gap: 16px;
    border-radius: 13px;
    border: 1px solid rgba(113, 133, 158, 0.20);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.vacanciesBenefits__item {
    display: flex;
    padding: 18px 20px;
    align-items: center;
    border-radius: 13px;
    background: linear-gradient(99deg, #70BAEB -145.02%, #2C63AC 111.02%);
}
.vacanciesBenefits__item--image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(155deg, #004E86 -12.52%, #2C63AC 112.69%);
    box-shadow: 1px 5px 8px 0 #04385D inset;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 28px;
    flex: none;
}
.vacanciesBenefits__item--title {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

@media screen and (max-width: 1300px) {
    .vacanciesBenefits__item--image {
        margin-right: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .vacanciesPage {
        row-gap: 40px;
    }
    .vacanciesBenefitsBlock {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .vacanciesBenefits__items {
        width: 100%;
    }
    .vacanciesContacts {
        width: 100%;
    }
    .vacanciesContacts--button {
        max-width: 276px;
    }
}

@media screen and (max-width: 900px) {
    .vacanciesBenefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .vacanciesBenefits {
        grid-template-columns: repeat(1, 1fr);
        border: none;
        padding: 0;
        gap: 10px;
        width: 100%;
    }
    .vacanciesPage--title {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .vacanciesBenefits__item {
        padding: 12px;
    }
    .vacanciesBenefits__item--image {
        margin-right: 12px;
    }
    .vacanciesBenefits__item--title {
        font-size: 14px;
        line-height: 20px;
    }
    .vacanciesContacts--title {
        font-size: 16px;
        line-height: 20px;
    }
    .vacanciesContacts--phone {
        font-size: 23px;
        line-height: 28px;
    }
}