.vacancies-worth-wrapper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-height: 390px;
}

.worth-wrapper {
    height: 100%;
}

.worth {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 30px;
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    height: 100%;
    background-color: #036739;
}

.worth__logo {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}

.worth__logo img {
    width: inherit;
}


.worth__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;

    color: #fff;
}

.worth__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0;
    vertical-align: middle;

    color: #fff;
}


@media (max-width: 1100px) {
    .vacancies-worth-wrapper .swiper-wrapper {
        min-height: 462px;
    }
}

@media (max-width: 991px) {
    .worth {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .vacancies-worth-wrapper .swiper-wrapper {
        display: flex;
        flex-direction: row;
        gap: 0;
        align-items: stretch;
        min-height: inherit;
    }
    .vacancies-worth-wrapper .swiper-wrapper .swiper-slide {
        height: auto;
    }
    .worth__logo {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}