.other-offers {
    padding: 40px 0 50px;
    background: #f8f9fa;
}

.other-offers__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 25px;
}

.other-offers__title {
    margin: 0;
    font-size: 22px;
}

.other-offers__toggle {
    width: 24px;
    height: 24px;
    position: relative;
}

.other-offers__toggle::before,
.other-offers__toggle::after {
    content: '';
    position: absolute;
    background: #666;
    transition: .2s;
}

.other-offers__toggle::before {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}

.other-offers__toggle::after {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

.other-offers__header[aria-expanded="true"] .other-offers__toggle::after {
    transform: scaleY(0);
}

.other-offers__group-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
}

.other-offers__list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.other-offers__list a {
    display: block;
    padding: 4px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color .15s;
}

.other-offers__list a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .other-offers__col {
        margin-bottom: 10px;
    }
}