.faq-list{
    display: grid;
    gap: 16px;
}
.news.faq {
    padding: 80px 0;
}
.faq-line{
    background: #F2F2F7;
    padding: 16px 20px;
    position: relative;
    color: var(--primary);
    align-items: center;
    cursor: pointer;
    list-style: none;
    width: 100%;
}
.faq-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}
.slide-up-content {
    display: none;
}
.plus-item:first-child {
    background: #f7f7f7 !important;
}
.plus-item.active, .plus-item:hover {
    background: #c8e9ed !important;
    cursor: pointer;
}
.plus-list {
    grid-template-columns: repeat(6, 1fr) !important;
    margin-bottom: 36px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}
h2.faq-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    border: 0;
    color: #1D1D1D;
    cursor: pointer;
}
h2.faq-title:hover {
    opacity: 0.7;
}
h1.block-title{
    margin-top: 20px;
}
.faq-title:after{
    display: block;
    content: '';
    width: 20px;
    height: 11px;
    background-image: url(/local/templates/main/assets/img/icons/faq-vector.svg);
    position: absolute;
    right: 21px;
    top: 25px;
    transition: .4s;
}
.faq-title.active:after{
    transform: rotate(180deg);
}
@media only screen and (max-width: 1420px){
.plus-list {
    grid-template-rows: repeat(1, 1fr) !important;
    grid-template-columns: repeat(3, 1fr) !important;
}
}
@media only screen and (max-width: 767px){
.plus-list {
    grid-template-columns: 100%!important;
}
}
@media (max-width: 1150px) {
.faq-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    padding-right: 30px;
}
}