.sections {
    margin: 60px 0;
}

.sections__list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6, 1fr);
}

.sections__item {
    grid-column: span 2;
    color: #203434;
    min-height: 319px;
}

.sections__item__wrap {
    position: relative;
    padding: 17px 26px 40px 26px;
    border: 1px solid #B4B6B8;
    box-shadow: 4px 4px 4px 0 #00000026;
    background: #fff;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.sections__item:nth-child(4),
.sections__item:nth-child(5) {
    grid-column: span 3;
}

.sections__item:nth-child(8) {
    grid-row: span 2;
}

.sections__item-img {
    position: absolute;
    width: 100%;
    height: auto;
    right: 0;
    bottom: 0;
}

.sections__item-desc {
    position: relative;
    z-index: 1;
    /* max-width: 352px; */
    max-width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.sections__item:nth-child(4) .sections__item-desc,
.sections__item:nth-child(5) .sections__item-desc {
    max-width: 497px;
}

.sections__item[data-id="7493"] .sections__item-desc {
	max-width: 250px;
}

.sections__item-ico {
    width: 73px;
    height: 53px;
    margin-bottom: 10px;
}

.sections__item-ico>* {
    width: 100%;
    height: auto;
}

.sections__item-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 25.6px;
    text-decoration: none;
    color: #203434;
    margin-bottom: 8px;
}

.sections__item:nth-last-child(3) .sections__item-title {
    max-width: 235px;
}

.sections__item-childs {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: height .2s ease-in-out;
}

.sections__item-child {
    font-size: 13px;
    font-weight: 300;
    line-height: 17px;
    color: #203434;
    text-decoration: none;
    margin-bottom: 10px;
}

.sections__item-child:not(.sections__item-child--visible) {
    display: none;
}

.sections__item-btn {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.sections__btn-show {
    display: none;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #000;
}

.sections__btn-show svg {
    margin-right: 9px;
}

.sections__btn-show--visible {
    display: flex;
}

.sections__item--is-open {
    z-index: 10;
}

.sections__item--is-open .sections__item__wrap {
    height: initial;
}

.sections__item--is-open .sections__btn-show svg {
    transform: rotateX(180deg);
}

.sections__item--is-open .sections__item-child {
    display: block !important;
}

@media (max-width: 1280px) {
    .sections__item__wrap {
        padding: 15px 18px 40px 18px;
    }

    .sections__item-desc {
        /* max-width: 325px; */
        max-width: 50%;
    }

    .sections__item {
        grid-column: span 3;
    }

    .sections__item:nth-child(4) {
        grid-column: span 3;
    }

    .sections__item:nth-child(5) {
        grid-column: span 6;
    }

    .sections__item:nth-child(8) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .sections__item:nth-child(8) .sections__item-child:nth-child(n+5) {
        display: none;
    }

    .sections__item:nth-child(8) .sections__btn-show {
        display: block;
    }

}

@media (max-width: 700px) {
    .sections {
        margin: 0 0 60px 0;
    }

    .sections__list {
        display: flex;
        overflow-x: auto;
    }

    .sections__item-desc {
        width: 305px;
    }

    .sections__item-childs {
        max-width: 225px;
    }

    .sections__item-title {
        font-size: 16px;
        line-height: 19.5px;
    }

    .sections__item--is-open .sections__item__wrap {
        height: initial;
        min-height: 100%;
    }
}