.solutions {
    position: relative;
    margin-bottom: 60px;
}

.solutions a, .solutions a:hover, .solutions a:visited {
    color: #fff;
}

.solutions__inner {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -55px;
    z-index: 2;
}

.solutions__title {
    text-align: center;
    text-transform: none;
    position: relative;
    bottom: 60px;
    font-weight: bold;
}

.solutions__title a {
    color: #fff;
    text-decoration: underline;
    font-size: 48px;
    margin-bottom: 5px;
}

.solutions__title span {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.solutions__solutions-list {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.solutions__solutions-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .7;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85) 7%, rgba(255, 255, 255, 0) 66%);
}

.solutions__solution {
    width: 320px;
    background: rgba(101, 108, 111, 0.9);
    display: inline-flex;
    flex-direction: column;
}

.solutions__solution a {
    display: inline-block;
}

.solutions__solution-name {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding-top: 35px;
}

.solutions__solution-name span {
    display: block;
    margin-top: 20px;
    font-size: 21px;
    text-transform: uppercase;
}

.solutions__solution-category {
    margin: 40px 0 15px;
    text-align: center;
    font-weight: bold;
}

.solutions__solution-icon {
    margin: 0 auto 17px;
    width: 39px;
    height: 31px;
    background: url('./images/sprite.png') -79px -156px no-repeat;
}
.solutions__solution-products-list{
    display: flex;
    flex-direction: column;
}
.solutions__solution-product {
    font-weight: bold;
    text-align: center;
    margin: 0 auto 17px;
    position: relative;
}

.solutions__solution-show-all-products-link {
    margin: 0 auto;
    text-decoration: underline;
    position: relative;
}

.solutions__solution-price {
    margin-top: 35px;
    font-size: 36px;
    text-align: center;
}

.solutions__solution-buy-button {
    font-size: 24px;
    margin: 0 auto 35px;
    padding-right: 30px;
    position: relative;
}

.solutions__solution-buy-button:hover {
    text-decoration: underline;
}

.solutions__solution-buy-button::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 22px;
    background: url('./images/sprite.png') -100px -195px no-repeat;
    top: 6px;
    right: 0;
}

.solutions__solution--active {
    background: #e20932;
    width: 299px;
    min-height: 571px;
    position: relative;
}

.solutions__solution--active .solutions__solution-name span {
    font-size: 35px;
}

.solutions__solution--active .solutions__solution-category {
    font-size: 18px;
    max-width: 70%;
    margin: 40px auto 15px;
}

.solutions__header {
    margin: 20px 0;
    display: none;
}

.solutions__header-item {
    text-align: center;
    background: rgba(101, 108, 111, 0.9);
    padding: 8px 19px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.solutions__header-item--active {
    background: #e20932;
}

@media screen and (max-width: 1919px) {
    .solutions__inner {
        bottom: -48px;
    }
    .solutions__title {
        bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .solutions {
        background: url('./images/bg.jpg') no-repeat;
        background-size: cover;
        background-position: center;
    }
    .solutions__inner {
        position: static;
    }
    .solutions__title {
        position: static;
        bottom: 0;
        padding: 70px 0 30px;
    }
    .solutions__header {
        display: block;
    }
    .solutions__solutions-list {
        padding: 0;
        max-width: 100%;
        flex-wrap: wrap;
    }
    .solutions__solution {
        width: 100%;
        display: none;
    }
    .solutions__solution--active {
        display: flex;
    }
}
