.solutions__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    margin: 0;
    padding: 0;
}
  
.solutions__item {
    display: flex;
    align-items: center;
}
  
.solutions__header {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 30px;
    gap: 20px;
    width: calc(50% - 10px);
    cursor: pointer;
}

.solutions__title {
    text-align: center;
}

.solutions__header:hover {
    background-color: var(--color-accent-pink);
    color: var(--color-white);
}

.solutions__img_active {
    display: none;
}

.solutions__header:hover .solutions__img_default {
    display: block;
}

.solutions__header:hover .solutions__img_active {
    display: none;
}

.solutions__header_active {
    background-color: var(--color-accent-pink);
    color: var(--color-white);
}

.solutions__header_active:hover .solutions__img_default {
    display: block;
}
  
.solutions__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: none;
}

.solutions__img_active {
    display: block;
}
  
.solutions__description {
    position: absolute;
    top: 0;
    right:  0;
    width: calc(50% - 10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;

    pointer-events: auto;
}
  
.solutions__description_opened {
    opacity: 1;
}

.solutions__description-item {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 30px;
    box-sizing: border-box;
    pointer-events: none;
    margin-bottom: 10px;
    padding-bottom: 80px;
}

.solutions__description-item ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 10px;
    padding: 0;
}
  
.solutions__description-item ul:last-of-type {
    margin-bottom: 0;
}
  
.solutions__description-item ul li {
    padding: 7px;
    padding-right: 15px;
    background-color: rgba(237, 113, 128, .2);
    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 20px;
}

.solutions__description-item_foreign ul li {
    background-color: rgba(31, 64, 229, .2);
}

.solutions__description-item ul li::before {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg width="15" height="11" viewBox="0 0 15 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 4L6 9L14 1" stroke="white" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 11px;
    border-radius: 20px;
    content: "";
    display: block;
    background-color: rgba(237, 113, 128);
}

.solutions__description-item_foreign ul li::before {
    background-color: rgba(31, 64, 229);
}

@media (max-width: 768px) {
    .solutions__list {
        gap: 0;
    }

    .solutions__item {
        flex-direction: column;
    }

    .solutions__header {
        width: 100%;
        margin-bottom: 10px;
        padding: 20px;
    }

    .solutions__description {
        position: static;
        width: 100%;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .solutions__description_opened {
        max-height: 1000px;
        opacity: 1;
    }
}

.solutions__detail-description {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 30px;
    box-sizing: border-box;
    pointer-events: none;
}

.solutions__detail-description ul {
    padding: 20px 20px 20px 25px;
    list-style-type: disc;
}

.solutions__detail-description ul li::marker {
    color: #ED7180;
    list-style-type: disc;
}

.solutions__detail-description ul li {
    font-size: 20px;
}

@media (max-width: 1270px) {
    .solutions__detail-description ul li {
        font-size: 18px;
    }
}

@media (max-width: 985px) {
    .solutions__detail-description ul li {
        font-size: 16px;
    }
}