.departments {
    padding: 50px 0;
}

.departments__list {

}

.departments__item {
    display: flex;
    flex-direction: column;

    @media (min-width: 960px) {
        flex-direction: row;
        align-items: stretch;
    }
}

.departments__item:not(:last-child) {
    margin-bottom: 40px;
}

.departments__image {
    width: 100%;

    @media (min-width: 960px) {
        min-width: 420px;
        min-height: 370px;
        width: 420px;
        height: 370px;
    }
}

.departments__image img {
    width: 100%;
    height: 100%;
    display: block;
}

.departments__info {
    background-color: #faf8f8;
    box-sizing: border-box;
    padding: 30px 20px;

    @media (min-width: 960px) {
        padding: 40px 30px;
    }
}

.departments__title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.departments__text {

}

.departments__button {
    margin-top: 20px;
}

.departments__button a {
    display: inline-flex;
}