.solutions-items {
    display: flex;
    flex-wrap: wrap;
}

.websima-solution {
    width: 25%;
    padding: 24px 17px;
    position: relative;
}


.websima-solution:nth-child(3),
.websima-solution:nth-child(4) {
    width: 50%;
}

.websima-solution:nth-child(1),
.websima-solution:nth-child(2),
.websima-solution:nth-child(4),
.websima-solution:nth-child(5) {
    border-left: 1px solid #E1E8EB;
}

.websima-solution img {
    height: 378px;
    width: calc(100% + 50px);
    border-radius: 4px;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(40px, 0, 0);
    max-width: unset;
}

.solution-box-inner {
    border-radius: 4px;
    max-height: 378px;
    overflow: hidden;
}

.solution-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 16px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 82%;
    gap: 32px;
    justify-content: space-between;
}

.websima-solution:nth-child(3) .solution-caption,
.websima-solution:nth-child(4) .solution-caption {
    width: max-content;
}

.solution-icon {
    width: 40px;
    height: 40px;
    background: #F15B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex: 0 0 40px;
}

.solution-icon a {
    font-size: 22px;
    color: #121212;
}

.solution-icon i {
    transform: rotate(45deg);
    transition: 0.3s;
    font-size: 8px;
}

.websima-solution:hover i {
    transform: rotate(80deg);
}

.websima-solution:hover .solution-title a{
    color: #F15B2A;
}
.websima-solution:hover img{
    transform: translate3d(0, 0, 0);
}

.solutions-container {
    border-top: 1px solid #E1E8EB;
    border-bottom: 1px solid #E1E8EB;
    margin-top: 40px;
    position: relative;
}

.solutions-container::before {
    content: '';
    width: 100%;
    height: 1px;
    background: #E1E8EB;
    position: absolute;
    top: 50%;
    left: 0;
}

@media (max-width: 991px) {
    .websima-solution {
        border: none !important;
        width: auto;
    }

    .solutions-container {
        border: none;
    }

    .solutions-container::before {
        display: none;
    }

    .websima-solution img {
        width: 100%;
        height: 300px;
        transform: none;
    }

    .solution-caption {
        width: 70%;
        right: 50%;
        justify-content: space-between;
        transform: translateX(50%);
    }
}