.solutions {
    padding: 124px 0 41px 0;
}

.solutions__wrapper {
    display: flex;
    flex-direction: row;
    gap: 85px;
}

.solutions__item {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 33%;
}

.solutions__item .img-wrapper {
    width: 110px;
    height: 110px;
}

.solutions__item .img-wrapper img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.solutions__item__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solutions__item__text h2 {
    font-family: Segoe UI;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    color: #1A224C;
}

.solutions__item__text h3 {
    font-family: Segoe UI;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    text-align: center;
    color: #1A224C;

}

.more {
    display: flex;
    transition: all 0.4s ease-in-out;
    flex-direction: row;
    gap: 8px;
    font-family: Segoe UI;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: #727DA4;
    align-items: center;
    text-decoration: none;
}

.more:hover {
    scale: 1.1;
}

@media screen and (max-width:1024px) {
    .solutions {
        padding: 30px;
    }
    
    .solutions__wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .solutions__item {
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .solutions__item .img-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .solutions__item .img-wrapper img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
    
    .solutions__item__text {
        display: flex;
        flex-direction: column;
        gap: 6px
    }
    
    .solutions__item__text h2 {
        font-family: Segoe UI;
        font-weight: 700;
        font-size: 21px;
        line-height: 26px;
        letter-spacing: 1px;
        text-align: center;
        text-transform: uppercase;
        color: #1A224C;
    }
    
    .solutions__item__text h3 {
        font-family: Segoe UI;
        font-weight: 300;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0px;
        text-align: center;
        color: #1A224C;
    
    }
    
   
}